Home | History | Annotate | Download | only in CodeGen
      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