]> granicus.if.org Git - clang/commitdiff
Fixing a weird copy-pasta to get bots back to green.
authorAaron Ballman <aaron@aaronballman.com>
Mon, 26 Aug 2019 20:46:20 +0000 (20:46 +0000)
committerAaron Ballman <aaron@aaronballman.com>
Mon, 26 Aug 2019 20:46:20 +0000 (20:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@369960 91177308-0d34-0410-b5e6-96231b3b80d8

test/Sema/thread-specifier.c

index 091bc097c7ac41ff961ff55ca2364ac0bda1bf54..a9789c8841f34a2c0d856b1b44ef0209c4e491a1 100644 (file)
@@ -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