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/Sema/pr25786.c | |
| 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/Sema/pr25786.c')
| -rw-r--r-- | clang/test/Sema/pr25786.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Sema/pr25786.c b/clang/test/Sema/pr25786.c index bfc2b35ede2..f79d8144716 100644 --- a/clang/test/Sema/pr25786.c +++ b/clang/test/Sema/pr25786.c @@ -2,8 +2,8 @@ // RUN: %clang_cc1 -triple i686-unknown-linux-gnu -fsyntax-only -verify %s #if TEST -void (__attribute__((regparm(3), stdcall)) *pf) (); //expected-warning {{'stdcall' calling convention ignored for this target}} -void (__attribute__((regparm(2), stdcall)) foo)(int a) { //expected-warning {{'stdcall' calling convention ignored for this target}} +void (__attribute__((regparm(3), stdcall)) *pf) (); //expected-warning {{'stdcall' calling convention is not supported for this target}} +void (__attribute__((regparm(2), stdcall)) foo)(int a) { //expected-warning {{'stdcall' calling convention is not supported for this target}} } #else //expected-no-diagnostics |

