@@ -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