Author: majnemer
Date: Thu May 14 00:24:59 2015
New Revision: 237338

URL: http://llvm.org/viewvc/llvm-project?rev=237338&view=rev
Log:
Fix buildbots

Modified:
    cfe/trunk/test/SemaCXX/declspec-thread.cpp

Modified: cfe/trunk/test/SemaCXX/declspec-thread.cpp
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaCXX/declspec-thread.cpp?rev=237338&r1=237337&r2=237338&view=diff
==============================================================================
--- cfe/trunk/test/SemaCXX/declspec-thread.cpp (original)
+++ cfe/trunk/test/SemaCXX/declspec-thread.cpp Thu May 14 00:24:59 2015
@@ -23,7 +23,7 @@ struct HasDtor { ~HasDtor(); int x; };
 #if _MSC_VER >= 1900
 __declspec(thread) HasDtor g;
 #else
-__declspec(thread) HasCtor f; // expected-error {{must be a constant 
expression}} expected-note {{thread_local}}
+__declspec(thread) HasCtor g; // expected-error {{must be a constant 
expression}} expected-note {{thread_local}}
 #endif
 
 struct HasDefaultedDefaultCtor {


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to