@@ -771,9 +771,6 @@ pub struct TargetOptions {
771771 /// rather than "default"
772772 pub default_hidden_visibility : bool ,
773773
774- /// Whether or not bitcode is embedded in object files
775- pub embed_bitcode : bool ,
776-
777774 /// Whether a .debug_gdb_scripts section will be added to the output object file
778775 pub emit_debug_gdb_scripts : bool ,
779776
@@ -893,7 +890,6 @@ impl Default for TargetOptions {
893890 no_builtins : false ,
894891 codegen_backend : "llvm" . to_string ( ) ,
895892 default_hidden_visibility : false ,
896- embed_bitcode : false ,
897893 emit_debug_gdb_scripts : true ,
898894 requires_uwtable : false ,
899895 simd_types_indirect : true ,
@@ -1208,7 +1204,6 @@ impl Target {
12081204 key ! ( no_builtins, bool ) ;
12091205 key ! ( codegen_backend) ;
12101206 key ! ( default_hidden_visibility, bool ) ;
1211- key ! ( embed_bitcode, bool ) ;
12121207 key ! ( emit_debug_gdb_scripts, bool ) ;
12131208 key ! ( requires_uwtable, bool ) ;
12141209 key ! ( simd_types_indirect, bool ) ;
@@ -1437,7 +1432,6 @@ impl ToJson for Target {
14371432 target_option_val ! ( no_builtins) ;
14381433 target_option_val ! ( codegen_backend) ;
14391434 target_option_val ! ( default_hidden_visibility) ;
1440- target_option_val ! ( embed_bitcode) ;
14411435 target_option_val ! ( emit_debug_gdb_scripts) ;
14421436 target_option_val ! ( requires_uwtable) ;
14431437 target_option_val ! ( simd_types_indirect) ;
0 commit comments