xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/darwin-thread-specifier.c (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
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