diff options
Diffstat (limited to 'test/CodeGen/R600/loop-idiom.ll')
-rw-r--r-- | test/CodeGen/R600/loop-idiom.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/R600/loop-idiom.ll b/test/CodeGen/R600/loop-idiom.ll index a0b00ab..810b34f 100644 --- a/test/CodeGen/R600/loop-idiom.ll +++ b/test/CodeGen/R600/loop-idiom.ll @@ -20,9 +20,9 @@ entry: for.body: %0 = phi i32 [0, %entry], [%4, %for.body] - %1 = getelementptr i8 addrspace(3)* %in, i32 %0 - %2 = getelementptr i8* %dest, i32 %0 - %3 = load i8 addrspace(3)* %1 + %1 = getelementptr i8, i8 addrspace(3)* %in, i32 %0 + %2 = getelementptr i8, i8* %dest, i32 %0 + %3 = load i8, i8 addrspace(3)* %1 store i8 %3, i8* %2 %4 = add i32 %0, 1 %5 = icmp eq i32 %4, %size @@ -44,7 +44,7 @@ entry: for.body: %0 = phi i32 [0, %entry], [%2, %for.body] - %1 = getelementptr i8* %dest, i32 %0 + %1 = getelementptr i8, i8* %dest, i32 %0 store i8 0, i8* %1 %2 = add i32 %0, 1 %3 = icmp eq i32 %2, %size |