xref: /llvm-project/clang/test/CodeGen/darwin-thread-specifier.c (revision 6b3351792c6c9a362a3e8b826bc1d96f8e1918e0)
1 // RUN: %clang_cc1 -triple x86_64-apple-macosx10.7.0 -emit-llvm -o - %s | FileCheck %s
2 // CHECK: @b ={{.*}} thread_local global i32 5, align 4
3 __thread int b = 5;
4