Author: aaronballman
Date: Mon Aug 26 13:55:43 2019
New Revision: 369968

URL: http://llvm.org/viewvc/llvm-project?rev=369968&view=rev
Log:
Updating a test case that was missed in r369957.

Modified:
    cfe/trunk/test/SemaOpenCLCXX/restricted.cl

Modified: cfe/trunk/test/SemaOpenCLCXX/restricted.cl
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaOpenCLCXX/restricted.cl?rev=369968&r1=369967&r2=369968&view=diff
==============================================================================
--- cfe/trunk/test/SemaOpenCLCXX/restricted.cl (original)
+++ cfe/trunk/test/SemaOpenCLCXX/restricted.cl Mon Aug 26 13:55:43 2019
@@ -31,7 +31,7 @@ B *test_dynamic_cast(B *p) {
 // Test storage class qualifiers.
 __constant _Thread_local int a = 1;
 // expected-error@-1 {{C++ for OpenCL version 1.0 does not support the 
'_Thread_local' storage class specifier}}
-// expected-warning@-2 {{_Thread_local is a C11-specific feature}}
+// expected-warning@-2 {{_Thread_local is a C11 extension}}
 
 __constant __thread int b = 2;
 // expected-error@-1 {{C++ for OpenCL version 1.0 does not support the 
'__thread' storage class specifier}}


_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to