Mercurial > hg > Members > tobaru > cbc > CbC_llvm
annotate test/Assembler/tls-models.ll @ 100:7d135dc70f03
LLVM 3.9
author | Miyagi Mitsuki <e135756@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 26 Jan 2016 22:53:40 +0900 |
parents | 54457678186b |
children |
rev | line source |
---|---|
0 | 1 ; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s |
77 | 2 ; RUN: verify-uselistorder %s |
0 | 3 |
4 ; CHECK: @a = thread_local global i32 0 | |
5 ; CHECK: @b = thread_local(localdynamic) global i32 0 | |
6 ; CHECK: @c = thread_local(initialexec) global i32 0 | |
7 ; CHECK: @d = thread_local(localexec) global i32 0 | |
8 | |
9 @a = thread_local global i32 0 | |
10 @b = thread_local(localdynamic) global i32 0 | |
11 @c = thread_local(initialexec) global i32 0 | |
12 @d = thread_local(localexec) global i32 0 |