Fix test: don't use __thread without a target triple.

llvm-svn: 141719
This commit is contained in:
Richard Smith 2011-10-11 21:51:31 +00:00
parent 453ac88b56
commit 7ab47734a2
1 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,8 @@
// RUN: %clang_cc1 %s -verify -fsyntax-only
#define thread_local __thread
thread_local int x;
#undef thread_local
#define constexpr const
constexpr int x = 0;
#undef constexpr
namespace lib {
struct nullptr_t;