blob: b1e1ed84647fc608dd5558b64761699dccaaa1e5 [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
Eli Friedman56ebe502009-04-19 21:05:03 +00002
3__thread int a;
4extern __thread int b;
5int c() { return &b; }
6int d() {
7 __thread static int e;
8 __thread static union {float a; int b;} f = {.b = 1};
9}
10