File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1345,8 +1345,8 @@ def note_pragma_attribute_namespace_on_attribute : Note<
1345
1345
"omit the namespace to add attributes to the most-recently"
1346
1346
" pushed attribute group">;
1347
1347
def warn_no_support_for_eval_method_source_on_m32 : Warning<
1348
- "Setting the floating point evaluation method to `source` on a target"
1349
- " without SSE is not supported. ">, InGroup<Pragmas>;
1348
+ "setting the floating point evaluation method to `source` on a target "
1349
+ "without SSE is not supported">, InGroup<Pragmas>;
1350
1350
// - #pragma __debug
1351
1351
def warn_pragma_debug_dependent_argument : Warning<
1352
1352
"%select{value|type}0-dependent expression passed as an argument to debug "
Original file line number Diff line number Diff line change 10
10
11
11
float add1 (float a , float b , float c ) {
12
12
return a + b + c ;
13
- } // warn-warning{{Setting the floating point evaluation method to `source` on a target without SSE is not supported. }}
13
+ } // warn-warning{{setting the floating point evaluation method to `source` on a target without SSE is not supported}}
14
14
15
15
float add2 (float a , float b , float c ) {
16
16
#pragma clang fp eval_method(source)
17
17
return a + b + c ;
18
- } // warn-warning{{Setting the floating point evaluation method to `source` on a target without SSE is not supported. }}
18
+ } // warn-warning{{setting the floating point evaluation method to `source` on a target without SSE is not supported}}
Original file line number Diff line number Diff line change 10
10
float add2 (float a , float b , float c ) {
11
11
#pragma clang fp eval_method(source)
12
12
return a + b + c ;
13
- } // warn-warning{{Setting the floating point evaluation method to `source` on a target without SSE is not supported. }}
13
+ } // warn-warning{{setting the floating point evaluation method to `source` on a target without SSE is not supported}}
You can’t perform that action at this time.
0 commit comments