Skip to content

Commit 7cc5fee

Browse files
committed
Remove forces_embed_bitcode
1 parent 3a23669 commit 7cc5fee

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

compiler/rustc_codegen_ssa/src/back/write.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -432,11 +432,9 @@ struct CompiledModules {
432432

433433
fn need_bitcode_in_object(tcx: TyCtxt<'_>) -> bool {
434434
let sess = tcx.sess;
435-
let requested_for_rlib = sess.opts.cg.embed_bitcode
435+
sess.opts.cg.embed_bitcode
436436
&& tcx.crate_types().contains(&CrateType::Rlib)
437-
&& sess.opts.output_types.contains_key(&OutputType::Exe);
438-
let forced_by_target = sess.target.forces_embed_bitcode;
439-
requested_for_rlib || forced_by_target
437+
&& sess.opts.output_types.contains_key(&OutputType::Exe)
440438
}
441439

442440
fn need_pre_lto_bitcode_for_incr_comp(sess: &Session) -> bool {

compiler/rustc_target/src/spec/mod.rs

-5
Original file line numberDiff line numberDiff line change
@@ -2327,8 +2327,6 @@ pub struct TargetOptions {
23272327
/// If we give emcc .o files that are actually .bc files it
23282328
/// will 'just work'.
23292329
pub obj_is_bitcode: bool,
2330-
/// Whether the target requires that emitted object code includes bitcode.
2331-
pub forces_embed_bitcode: bool,
23322330
/// Content of the LLVM cmdline section associated with embedded bitcode.
23332331
pub bitcode_llvm_cmdline: StaticCow<str>,
23342332

@@ -2671,7 +2669,6 @@ impl Default for TargetOptions {
26712669
allow_asm: true,
26722670
has_thread_local: false,
26732671
obj_is_bitcode: false,
2674-
forces_embed_bitcode: false,
26752672
bitcode_llvm_cmdline: "".into(),
26762673
min_atomic_width: None,
26772674
max_atomic_width: None,
@@ -3412,7 +3409,6 @@ impl Target {
34123409
key!(main_needs_argc_argv, bool);
34133410
key!(has_thread_local, bool);
34143411
key!(obj_is_bitcode, bool);
3415-
key!(forces_embed_bitcode, bool);
34163412
key!(bitcode_llvm_cmdline);
34173413
key!(max_atomic_width, Option<u64>);
34183414
key!(min_atomic_width, Option<u64>);
@@ -3687,7 +3683,6 @@ impl ToJson for Target {
36873683
target_option_val!(main_needs_argc_argv);
36883684
target_option_val!(has_thread_local);
36893685
target_option_val!(obj_is_bitcode);
3690-
target_option_val!(forces_embed_bitcode);
36913686
target_option_val!(bitcode_llvm_cmdline);
36923687
target_option_val!(min_atomic_width);
36933688
target_option_val!(max_atomic_width);

0 commit comments

Comments
 (0)