diff options
Diffstat (limited to 'test/CodeGen/SPARC/tls.ll')
-rw-r--r-- | test/CodeGen/SPARC/tls.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/SPARC/tls.ll b/test/CodeGen/SPARC/tls.ll index ce3e005..d54cf60 100644 --- a/test/CodeGen/SPARC/tls.ll +++ b/test/CodeGen/SPARC/tls.ll @@ -34,7 +34,7 @@ define i32 @test_tls_local() { entry: - %0 = load i32* @local_symbol, align 4 + %0 = load i32, i32* @local_symbol, align 4 %1 = add i32 %0, 1 store i32 %1, i32* @local_symbol, align 4 ret i32 %1 @@ -68,7 +68,7 @@ entry: define i32 @test_tls_extern() { entry: - %0 = load i32* @extern_symbol, align 4 + %0 = load i32, i32* @extern_symbol, align 4 %1 = add i32 %0, 1 store i32 %1, i32* @extern_symbol, align 4 ret i32 %1 |