Fix buildbots

llvm-svn: 237338
This commit is contained in:
David Majnemer 2015-05-14 05:24:59 +00:00
parent 1b5baffd73
commit a84a082384
1 changed files with 1 additions and 1 deletions

View File

@ -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 {