@@ -2327,8 +2327,6 @@ pub struct TargetOptions {
2327
2327
/// If we give emcc .o files that are actually .bc files it
2328
2328
/// will 'just work'.
2329
2329
pub obj_is_bitcode : bool ,
2330
- /// Whether the target requires that emitted object code includes bitcode.
2331
- pub forces_embed_bitcode : bool ,
2332
2330
/// Content of the LLVM cmdline section associated with embedded bitcode.
2333
2331
pub bitcode_llvm_cmdline : StaticCow < str > ,
2334
2332
@@ -2671,7 +2669,6 @@ impl Default for TargetOptions {
2671
2669
allow_asm : true ,
2672
2670
has_thread_local : false ,
2673
2671
obj_is_bitcode : false ,
2674
- forces_embed_bitcode : false ,
2675
2672
bitcode_llvm_cmdline : "" . into ( ) ,
2676
2673
min_atomic_width : None ,
2677
2674
max_atomic_width : None ,
@@ -3412,7 +3409,6 @@ impl Target {
3412
3409
key ! ( main_needs_argc_argv, bool ) ;
3413
3410
key ! ( has_thread_local, bool ) ;
3414
3411
key ! ( obj_is_bitcode, bool ) ;
3415
- key ! ( forces_embed_bitcode, bool ) ;
3416
3412
key ! ( bitcode_llvm_cmdline) ;
3417
3413
key ! ( max_atomic_width, Option <u64 >) ;
3418
3414
key ! ( min_atomic_width, Option <u64 >) ;
@@ -3687,7 +3683,6 @@ impl ToJson for Target {
3687
3683
target_option_val ! ( main_needs_argc_argv) ;
3688
3684
target_option_val ! ( has_thread_local) ;
3689
3685
target_option_val ! ( obj_is_bitcode) ;
3690
- target_option_val ! ( forces_embed_bitcode) ;
3691
3686
target_option_val ! ( bitcode_llvm_cmdline) ;
3692
3687
target_option_val ! ( min_atomic_width) ;
3693
3688
target_option_val ! ( max_atomic_width) ;
0 commit comments