r369960 - Fixing a weird copy-pasta to get bots back to green.

Aaron Ballman via cfe-commits cfe-commits at lists.llvm.org
Mon Aug 26 13:46:21 PDT 2019


Author: aaronballman
Date: Mon Aug 26 13:46:20 2019
New Revision: 369960

URL: http://llvm.org/viewvc/llvm-project?rev=369960&view=rev
Log:
Fixing a weird copy-pasta to get bots back to green.

Modified:
    cfe/trunk/test/Sema/thread-specifier.c

Modified: cfe/trunk/test/Sema/thread-specifier.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Sema/thread-specifier.c?rev=369960&r1=369959&r2=369960&view=diff
==============================================================================
--- cfe/trunk/test/Sema/thread-specifier.c (original)
+++ cfe/trunk/test/Sema/thread-specifier.c Mon Aug 26 13:46:20 2019
@@ -11,7 +11,7 @@
 #undef __private_extern__
 #endif
 
-__thread int t1; // thread-local-warning {{_Thread_local thread-local-warning}}
+__thread int t1; // thread-local-warning {{_Thread_local is a C11 extension}}
 __thread extern int t2; // thread-local-warning {{_Thread_local is a C11 extension}}
 __thread static int t3; // thread-local-warning {{_Thread_local is a C11 extension}}
 #ifdef GNU




More information about the cfe-commits mailing list