summaryrefslogtreecommitdiff
path: root/test/SemaCUDA/cuda-inherits-calling-conv.cu
diff options
context:
space:
mode:
authorSunil Srivastava <sunil_srivastava@playstation.sony.com>2019-07-17 20:41:26 +0000
committerSunil Srivastava <sunil_srivastava@playstation.sony.com>2019-07-17 20:41:26 +0000
commitbb4fb0414e9d6a4677aef1cc8cdfdcb5fca43ede (patch)
treeafe0c68edc74fb540ed775a74c77f0f0af1fa6fb /test/SemaCUDA/cuda-inherits-calling-conv.cu
parent2688e5894f901b98369460f563614d2a4ee4bb0e (diff)
downloadclang-bb4fb0414e9d6a4677aef1cc8cdfdcb5fca43ede.tar.gz
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. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@366368 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/SemaCUDA/cuda-inherits-calling-conv.cu')
-rw-r--r--test/SemaCUDA/cuda-inherits-calling-conv.cu2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SemaCUDA/cuda-inherits-calling-conv.cu b/test/SemaCUDA/cuda-inherits-calling-conv.cu
index 881f2945b1..a6928e71f3 100644
--- a/test/SemaCUDA/cuda-inherits-calling-conv.cu
+++ b/test/SemaCUDA/cuda-inherits-calling-conv.cu
@@ -24,7 +24,7 @@ struct Foo<T()> {};
// expected-no-diagnostics
#else
// expected-error@+4 {{redefinition of 'Foo}}
-// expected-warning@+3 {{'__fastcall' calling convention ignored}}
+// expected-warning@+3 {{'__fastcall' calling convention is not supported}}
#endif
template <class T>
struct Foo<T __fastcall()> {};