File tree 3 files changed +18
-5
lines changed
3 files changed +18
-5
lines changed Original file line number Diff line number Diff line change @@ -63,3 +63,6 @@ codegen_gcc_invalid_monomorphization_unsupported_operation =
63
63
64
64
codegen_gcc_invalid_minimum_alignment =
65
65
invalid minimum global alignment: { $err }
66
+
67
+ codegen_gcc_tied_target_features = the target features { $features } must all be either enabled or disabled together
68
+ .help = add the missing features in a `target_feature` attribute
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ use rustc_session::Session;
9
9
use rustc_span:: symbol:: sym;
10
10
use smallvec:: { smallvec, SmallVec } ;
11
11
12
- use crate :: context:: CodegenCx ;
12
+ use crate :: { context:: CodegenCx , errors :: TiedTargetFeatures } ;
13
13
14
14
// Given a map from target_features to whether they are enabled or disabled,
15
15
// ensure only valid combinations are allowed.
@@ -84,10 +84,11 @@ pub fn from_fn_attrs<'gcc, 'tcx>(
84
84
let span = cx. tcx
85
85
. get_attr ( instance. def_id ( ) , sym:: target_feature)
86
86
. map_or_else ( || cx. tcx . def_span ( instance. def_id ( ) ) , |a| a. span ) ;
87
- let msg = format ! ( "the target features {} must all be either enabled or disabled together" , features. join( ", " ) ) ;
88
- let mut err = cx. tcx . sess . struct_span_err ( span, & msg) ;
89
- err. help ( "add the missing features in a `target_feature` attribute" ) ;
90
- err. emit ( ) ;
87
+ cx. tcx . sess . create_err ( TiedTargetFeatures {
88
+ features : features. join ( ", " ) ,
89
+ span,
90
+ } )
91
+ . emit ( ) ;
91
92
return ;
92
93
}
93
94
Original file line number Diff line number Diff line change @@ -227,3 +227,12 @@ pub(crate) struct UnwindingInlineAsm {
227
227
pub ( crate ) struct InvalidMinimumAlignment {
228
228
pub err : String ,
229
229
}
230
+
231
+ #[ derive( Diagnostic ) ]
232
+ #[ diag( codegen_gcc_tied_target_features) ]
233
+ #[ help]
234
+ pub ( crate ) struct TiedTargetFeatures {
235
+ #[ primary_span]
236
+ pub span : Span ,
237
+ pub features : String ,
238
+ }
You can’t perform that action at this time.
0 commit comments