From: Enea Zaffanella Date: Sat, 4 May 2013 11:26:59 +0000 (+0000) Subject: Moved pretty printer test for thread local storage in its own file X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aa3d68af3b533ee79a862f2c6d159b79d278a6fc;p=clang Moved pretty printer test for thread local storage in its own file and specified the triple. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@181115 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/SemaCXX/cxx11-ast-print.cpp b/test/SemaCXX/cxx11-ast-print.cpp index b239762bb0..f7bfc1123a 100644 --- a/test/SemaCXX/cxx11-ast-print.cpp +++ b/test/SemaCXX/cxx11-ast-print.cpp @@ -43,10 +43,3 @@ const char *p10 = 3.300e+15_fritz; // CHECK-NOT: ; -// CHECK: __thread int gnu_tl; -// CHECK: _Thread_local int c11_tl; -// CHECK: thread_local int cxx11_tl; -__thread int gnu_tl; -_Thread_local int c11_tl; -thread_local int cxx11_tl; - diff --git a/test/SemaCXX/cxx11-thread-local-print.cpp b/test/SemaCXX/cxx11-thread-local-print.cpp new file mode 100644 index 0000000000..9d9a82b7e6 --- /dev/null +++ b/test/SemaCXX/cxx11-thread-local-print.cpp @@ -0,0 +1,9 @@ +// RUN: %clang_cc1 -std=c++11 -triple=x86_64-linux-gnu -ast-print %s | FileCheck %s + +// CHECK: __thread int gnu_tl; +// CHECK: _Thread_local int c11_tl; +// CHECK: thread_local int cxx11_tl; +__thread int gnu_tl; +_Thread_local int c11_tl; +thread_local int cxx11_tl; +