@@ -771,9 +771,6 @@ pub struct TargetOptions {
771
771
/// rather than "default"
772
772
pub default_hidden_visibility : bool ,
773
773
774
- /// Whether or not bitcode is embedded in object files
775
- pub embed_bitcode : bool ,
776
-
777
774
/// Whether a .debug_gdb_scripts section will be added to the output object file
778
775
pub emit_debug_gdb_scripts : bool ,
779
776
@@ -893,7 +890,6 @@ impl Default for TargetOptions {
893
890
no_builtins : false ,
894
891
codegen_backend : "llvm" . to_string ( ) ,
895
892
default_hidden_visibility : false ,
896
- embed_bitcode : false ,
897
893
emit_debug_gdb_scripts : true ,
898
894
requires_uwtable : false ,
899
895
simd_types_indirect : true ,
@@ -1208,7 +1204,6 @@ impl Target {
1208
1204
key ! ( no_builtins, bool ) ;
1209
1205
key ! ( codegen_backend) ;
1210
1206
key ! ( default_hidden_visibility, bool ) ;
1211
- key ! ( embed_bitcode, bool ) ;
1212
1207
key ! ( emit_debug_gdb_scripts, bool ) ;
1213
1208
key ! ( requires_uwtable, bool ) ;
1214
1209
key ! ( simd_types_indirect, bool ) ;
@@ -1437,7 +1432,6 @@ impl ToJson for Target {
1437
1432
target_option_val ! ( no_builtins) ;
1438
1433
target_option_val ! ( codegen_backend) ;
1439
1434
target_option_val ! ( default_hidden_visibility) ;
1440
- target_option_val ! ( embed_bitcode) ;
1441
1435
target_option_val ! ( emit_debug_gdb_scripts) ;
1442
1436
target_option_val ! ( requires_uwtable) ;
1443
1437
target_option_val ! ( simd_types_indirect) ;
0 commit comments