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<
13451345 "omit the namespace to add attributes to the most-recently"
13461346 " pushed attribute group">;
13471347def 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>;
13501350// - #pragma __debug
13511351def warn_pragma_debug_dependent_argument : Warning<
13521352 "%select{value|type}0-dependent expression passed as an argument to debug "
Original file line number Diff line number Diff line change 1010
1111float add1 (float a , float b , float c ) {
1212 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}}
1414
1515float add2 (float a , float b , float c ) {
1616#pragma clang fp eval_method(source)
1717 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 1010float add2 (float a , float b , float c ) {
1111#pragma clang fp eval_method(source)
1212 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