Fix declspec-thread.cpp test with a triple

Not all triples support it.

llvm-svn: 207772
This commit is contained in:
Reid Kleckner 2014-05-01 17:12:20 +00:00
parent e502507d34
commit 756199ccea
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
// RUN: %clang_cc1 -std=c++11 -fms-extensions -verify %s
// RUN: %clang_cc1 -triple i686-pc-win32 -std=c++11 -fms-extensions -verify %s
__thread __declspec(thread) int a; // expected-error {{already has a thread-local storage specifier}}
__declspec(thread) __thread int b; // expected-error {{already has a thread-local storage specifier}}