diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2009-04-19 21:05:03 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2009-04-19 21:05:03 +0000 |
commit | 4f856744e58a96a394298cf77cf875fa8f8860ab (patch) | |
tree | 0129e95a9abb3527feb539fe1c0efb3b13e7a460 /clang/test/CodeGen/thread-specifier.c | |
parent | 1c1a00cf51e5293e596e90d5c29a11c85197d996 (diff) | |
download | bcm5719-llvm-4f856744e58a96a394298cf77cf875fa8f8860ab.tar.gz bcm5719-llvm-4f856744e58a96a394298cf77cf875fa8f8860ab.zip |
PR3853: Add CodeGen support for __thread.
llvm-svn: 69545
Diffstat (limited to 'clang/test/CodeGen/thread-specifier.c')
-rw-r--r-- | clang/test/CodeGen/thread-specifier.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/clang/test/CodeGen/thread-specifier.c b/clang/test/CodeGen/thread-specifier.c new file mode 100644 index 00000000000..08992a6e229 --- /dev/null +++ b/clang/test/CodeGen/thread-specifier.c @@ -0,0 +1,10 @@ +// RUN: clang-cc -emit-llvm -o - %s | grep thread_local | count 4 + +__thread int a; +extern __thread int b; +int c() { return &b; } +int d() { + __thread static int e; + __thread static union {float a; int b;} f = {.b = 1}; +} + |