diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-05-27 18:44:32 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-05-27 18:44:32 +0000 |
commit | 5a5ac124e1efaf208671f01c46edb15f29ed2a0b (patch) | |
tree | a6140557876943cdd800ee997c9317283394b22c /test/CodeGen/X86/tls-local-dynamic.ll | |
parent | f03b5bed27d0d2eafd68562ce14f8b5e3f1f0801 (diff) |
Diffstat (limited to 'test/CodeGen/X86/tls-local-dynamic.ll')
-rw-r--r-- | test/CodeGen/X86/tls-local-dynamic.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/tls-local-dynamic.ll b/test/CodeGen/X86/tls-local-dynamic.ll index 4841e52c5b0e..1f1b41a8a6d4 100644 --- a/test/CodeGen/X86/tls-local-dynamic.ll +++ b/test/CodeGen/X86/tls-local-dynamic.ll @@ -32,7 +32,7 @@ entry: if.else: - %0 = load i32* @x, align 4 + %0 = load i32, i32* @x, align 4 %cmp1 = icmp eq i32 %i, 2 br i1 %cmp1, label %if.then2, label %return ; Now we call __tls_get_addr. @@ -43,7 +43,7 @@ if.else: if.then2: - %1 = load i32* @y, align 4 + %1 = load i32, i32* @y, align 4 %add = add nsw i32 %1, %0 br label %return ; This accesses TLS, but is dominated by the previous block, |