diff options
author | Eric Christopher <echristo@apple.com> | 2010-12-02 02:30:43 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2010-12-02 02:30:43 +0000 |
commit | 7b3982b40665e995ea62ca1b03923cbcc2391c14 (patch) | |
tree | feaa5ef0e14563d90dce2ec022c503ef3e9c4c75 /test/CodeGen/thread-specifier.c | |
parent | 7c92342a319c5eb02b8a9cfcc9a4e73392a8b5ae (diff) |
FileCheckize.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120648 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/thread-specifier.c')
-rw-r--r-- | test/CodeGen/thread-specifier.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/test/CodeGen/thread-specifier.c b/test/CodeGen/thread-specifier.c index a16103f08f..a1f3e16800 100644 --- a/test/CodeGen/thread-specifier.c +++ b/test/CodeGen/thread-specifier.c @@ -1,11 +1,15 @@ -// RUN: %clang_cc1 -triple i686-pc-linux-gnu -emit-llvm -o - %s | grep thread_local | count 4 -// RUN: %clang_cc1 -triple i686-pc-linux-gnu -emit-llvm -o - %s | not grep common +// RUN: %clang_cc1 -triple i686-pc-linux-gnu -emit-llvm -o - %s | FileCheck %s +// CHECK: @b = external thread_local global +// CHECK: @d.e = internal thread_local global +// CHECK: @d.f = internal thread_local global +// CHECK: @a = thread_local global __thread int a; extern __thread int b; -int c() { return &b; } +int c() { return *&b; } int d() { __thread static int e; __thread static union {float a; int b;} f = {.b = 1}; + return 0; } |