diff options
Diffstat (limited to 'llvm/test/CodeGen/R600/scratch-buffer.ll')
-rw-r--r-- | llvm/test/CodeGen/R600/scratch-buffer.ll | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/test/CodeGen/R600/scratch-buffer.ll b/llvm/test/CodeGen/R600/scratch-buffer.ll index 838a7f9f984..56088718ada 100644 --- a/llvm/test/CodeGen/R600/scratch-buffer.ll +++ b/llvm/test/CodeGen/R600/scratch-buffer.ll @@ -30,12 +30,12 @@ entry: if: %if_ptr = getelementptr [8192 x i32], [8192 x i32]* %scratch0, i32 0, i32 %if_offset - %if_value = load i32* %if_ptr + %if_value = load i32, i32* %if_ptr br label %done else: %else_ptr = getelementptr [8192 x i32], [8192 x i32]* %scratch1, i32 0, i32 %else_offset - %else_value = load i32* %else_ptr + %else_value = load i32, i32* %else_ptr br label %done done: @@ -57,12 +57,12 @@ entry: %scratch0 = alloca [8192 x i32] %scratch1 = alloca [8192 x i32] - %offset0 = load i32 addrspace(1)* %offsets + %offset0 = load i32, i32 addrspace(1)* %offsets %scratchptr0 = getelementptr [8192 x i32], [8192 x i32]* %scratch0, i32 0, i32 %offset0 store i32 %offset0, i32* %scratchptr0 %offsetptr1 = getelementptr i32, i32 addrspace(1)* %offsets, i32 1 - %offset1 = load i32 addrspace(1)* %offsetptr1 + %offset1 = load i32, i32 addrspace(1)* %offsetptr1 %scratchptr1 = getelementptr [8192 x i32], [8192 x i32]* %scratch1, i32 0, i32 %offset1 store i32 %offset1, i32* %scratchptr1 @@ -71,12 +71,12 @@ entry: if: %if_ptr = getelementptr [8192 x i32], [8192 x i32]* %scratch0, i32 0, i32 %if_offset - %if_value = load i32* %if_ptr + %if_value = load i32, i32* %if_ptr br label %done else: %else_ptr = getelementptr [8192 x i32], [8192 x i32]* %scratch1, i32 0, i32 %else_offset - %else_value = load i32* %else_ptr + %else_value = load i32, i32* %else_ptr br label %done done: |