You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Renamed and changed the wording of warn_cconv_ignored
As discussed in D64780 the wording of this warning message is being
changed to say 'is not supported' instead of 'ignored', and the
diag ID itself is being changed to warn_cconv_not_supported.
llvm-svn: 366368
void __attribute__((intel_ocl_bicc)) inteloclbifunc(float*a) {} // expected-warning {{'intel_ocl_bicc' calling convention ignored for this target}}
51
+
void __attribute__((intel_ocl_bicc)) inteloclbifunc(float*a) {} // expected-warning {{'intel_ocl_bicc' calling convention is not supported for this target}}
52
52
53
-
structtype_test {} __attribute__((stdcall)); // expected-warning {{'stdcall' calling convention ignored for this target}} expected-warning {{'stdcall' attribute only applies to functions and methods}}
53
+
structtype_test {} __attribute__((stdcall)); // expected-warning {{'stdcall' calling convention is not supported for this target}} expected-warning {{'stdcall' attribute only applies to functions and methods}}
0 commit comments