blob: a16103f08f6d4335fa8d655f36de05cd1bc2f894 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -triple i686-pc-linux-gnu -emit-llvm -o - %s | grep thread_local | count 4
Eric Christopher91f31dc2010-08-08 01:37:14 +00002// RUN: %clang_cc1 -triple i686-pc-linux-gnu -emit-llvm -o - %s | not grep common
Eli Friedman56ebe502009-04-19 21:05:03 +00003
4__thread int a;
5extern __thread int b;
6int c() { return &b; }
7int d() {
8 __thread static int e;
9 __thread static union {float a; int b;} f = {.b = 1};
10}
11