Extend the IL for selecting TLS models (PR9788)
[oota-llvm.git] / test / Assembler / tls-models.ll
1 ; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s
2
3 ; CHECK: @a = thread_local global i32 0
4 ; CHECK: @b = thread_local(localdynamic) global i32 0
5 ; CHECK: @c = thread_local(initialexec) global i32 0
6 ; CHECK: @d = thread_local(localexec) global i32 0
7
8 @a = thread_local global i32 0
9 @b = thread_local(localdynamic) global i32 0
10 @c = thread_local(initialexec) global i32 0
11 @d = thread_local(localexec) global i32 0