Clang Project

clang_source_code/test/CodeGen/darwin-thread-specifier.c
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