xref: /aosp_15_r20/external/clang/test/CodeGen/darwin-thread-specifier.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
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