@@ -938,9 +938,6 @@ pub struct TargetOptions {
938
938
/// for this target unconditionally.
939
939
pub no_builtins : bool ,
940
940
941
- /// The codegen backend to use for this target, typically "llvm"
942
- pub codegen_backend : String ,
943
-
944
941
/// The default visibility for symbols in this target should be "hidden"
945
942
/// rather than "default"
946
943
pub default_hidden_visibility : bool ,
@@ -1068,7 +1065,6 @@ impl Default for TargetOptions {
1068
1065
requires_lto : false ,
1069
1066
singlethread : false ,
1070
1067
no_builtins : false ,
1071
- codegen_backend : "llvm" . to_string ( ) ,
1072
1068
default_hidden_visibility : false ,
1073
1069
emit_debug_gdb_scripts : true ,
1074
1070
requires_uwtable : false ,
@@ -1461,7 +1457,6 @@ impl Target {
1461
1457
key ! ( requires_lto, bool ) ;
1462
1458
key ! ( singlethread, bool ) ;
1463
1459
key ! ( no_builtins, bool ) ;
1464
- key ! ( codegen_backend) ;
1465
1460
key ! ( default_hidden_visibility, bool ) ;
1466
1461
key ! ( emit_debug_gdb_scripts, bool ) ;
1467
1462
key ! ( requires_uwtable, bool ) ;
@@ -1699,7 +1694,6 @@ impl ToJson for Target {
1699
1694
target_option_val ! ( requires_lto) ;
1700
1695
target_option_val ! ( singlethread) ;
1701
1696
target_option_val ! ( no_builtins) ;
1702
- target_option_val ! ( codegen_backend) ;
1703
1697
target_option_val ! ( default_hidden_visibility) ;
1704
1698
target_option_val ! ( emit_debug_gdb_scripts) ;
1705
1699
target_option_val ! ( requires_uwtable) ;
0 commit comments