Hans Wennborg | ce718ff | 2012-06-23 11:37:03 +0000 | [diff] [blame] | 1 | ; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s |
Duncan P. N. Exon Smith | 13f5c58 | 2014-08-19 21:08:27 +0000 | [diff] [blame] | 2 | ; RUN: verify-uselistorder %s |
Hans Wennborg | ce718ff | 2012-06-23 11:37:03 +0000 | [diff] [blame] | 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 |