diff options
Diffstat (limited to 'llvm/test/CodeGen/R600/array-ptr-calc-i64.ll')
-rw-r--r-- | llvm/test/CodeGen/R600/array-ptr-calc-i64.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/R600/array-ptr-calc-i64.ll b/llvm/test/CodeGen/R600/array-ptr-calc-i64.ll index f3db9d7be84..eae095eb844 100644 --- a/llvm/test/CodeGen/R600/array-ptr-calc-i64.ll +++ b/llvm/test/CodeGen/R600/array-ptr-calc-i64.ll @@ -9,8 +9,8 @@ define void @test_array_ptr_calc(i32 addrspace(1)* noalias %out, [1025 x i32] ad %tid = call i32 @llvm.SI.tid() readnone %a_ptr = getelementptr [1025 x i32], [1025 x i32] addrspace(1)* %inA, i32 %tid, i32 0 %b_ptr = getelementptr i32, i32 addrspace(1)* %inB, i32 %tid - %a = load i32 addrspace(1)* %a_ptr - %b = load i32 addrspace(1)* %b_ptr + %a = load i32, i32 addrspace(1)* %a_ptr + %b = load i32, i32 addrspace(1)* %b_ptr %result = add i32 %a, %b store i32 %result, i32 addrspace(1)* %out ret void |