diff options
author | Sunil Srivastava <sunil_srivastava@playstation.sony.com> | 2019-07-17 20:41:26 +0000 |
---|---|---|
committer | Sunil Srivastava <sunil_srivastava@playstation.sony.com> | 2019-07-17 20:41:26 +0000 |
commit | 85d667fcb6f34175f9a9af87f58fe05b177e7d82 (patch) | |
tree | f1cb265bb82f901fbd9cd27355b71c43182272e0 /clang/test/Frontend | |
parent | 0966dd0d69cf66bcba55a4b5d28b1059b5c9b6a6 (diff) | |
download | bcm5719-llvm-85d667fcb6f34175f9a9af87f58fe05b177e7d82.tar.gz bcm5719-llvm-85d667fcb6f34175f9a9af87f58fe05b177e7d82.zip |
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
Diffstat (limited to 'clang/test/Frontend')
-rw-r--r-- | clang/test/Frontend/macro_defined_type.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Frontend/macro_defined_type.cpp b/clang/test/Frontend/macro_defined_type.cpp index 7a4427e42c0..d4f54b65a8d 100644 --- a/clang/test/Frontend/macro_defined_type.cpp +++ b/clang/test/Frontend/macro_defined_type.cpp @@ -17,5 +17,5 @@ void Func() { // Added test for fix for P41835 #define _LIBCPP_FLOAT_ABI __attribute__((pcs("aapcs"))) struct A { - _LIBCPP_FLOAT_ABI int operator()() throw(); // expected-warning{{'pcs' calling convention ignored for this target}} + _LIBCPP_FLOAT_ABI int operator()() throw(); // expected-warning{{'pcs' calling convention is not supported for this target}} }; |