From 7ab47734a218922ac881b8e8b32e9ba085a902b0 Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Tue, 11 Oct 2011 21:51:31 +0000 Subject: [PATCH] Fix test: don't use __thread without a target triple. llvm-svn: 141719 --- clang/test/Lexer/cxx0x_keyword_as_cxx98.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clang/test/Lexer/cxx0x_keyword_as_cxx98.cpp b/clang/test/Lexer/cxx0x_keyword_as_cxx98.cpp index a9ea2197248b..d87d3dc7faff 100644 --- a/clang/test/Lexer/cxx0x_keyword_as_cxx98.cpp +++ b/clang/test/Lexer/cxx0x_keyword_as_cxx98.cpp @@ -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;