diff options
Diffstat (limited to 'llvm/test/CodeGen/PowerPC/atomics-indexed.ll')
-rw-r--r-- | llvm/test/CodeGen/PowerPC/atomics-indexed.ll | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/llvm/test/CodeGen/PowerPC/atomics-indexed.ll b/llvm/test/CodeGen/PowerPC/atomics-indexed.ll index bb9ca040196..910874ee7b1 100644 --- a/llvm/test/CodeGen/PowerPC/atomics-indexed.ll +++ b/llvm/test/CodeGen/PowerPC/atomics-indexed.ll @@ -12,7 +12,7 @@ define i8 @load_x_i8_seq_cst([100000 x i8]* %mem) { ; CHECK: sync 0 ; CHECK: lbzx ; CHECK: sync 1 - %ptr = getelementptr inbounds [100000 x i8]* %mem, i64 0, i64 90000 + %ptr = getelementptr inbounds [100000 x i8], [100000 x i8]* %mem, i64 0, i64 90000 %val = load atomic i8* %ptr seq_cst, align 1 ret i8 %val } @@ -20,7 +20,7 @@ define i16 @load_x_i16_acquire([100000 x i16]* %mem) { ; CHECK-LABEL: load_x_i16_acquire ; CHECK: lhzx ; CHECK: sync 1 - %ptr = getelementptr inbounds [100000 x i16]* %mem, i64 0, i64 90000 + %ptr = getelementptr inbounds [100000 x i16], [100000 x i16]* %mem, i64 0, i64 90000 %val = load atomic i16* %ptr acquire, align 2 ret i16 %val } @@ -28,7 +28,7 @@ define i32 @load_x_i32_monotonic([100000 x i32]* %mem) { ; CHECK-LABEL: load_x_i32_monotonic ; CHECK: lwzx ; CHECK-NOT: sync - %ptr = getelementptr inbounds [100000 x i32]* %mem, i64 0, i64 90000 + %ptr = getelementptr inbounds [100000 x i32], [100000 x i32]* %mem, i64 0, i64 90000 %val = load atomic i32* %ptr monotonic, align 4 ret i32 %val } @@ -38,7 +38,7 @@ define i64 @load_x_i64_unordered([100000 x i64]* %mem) { ; PPC64-NOT: __sync_ ; PPC64: ldx ; CHECK-NOT: sync - %ptr = getelementptr inbounds [100000 x i64]* %mem, i64 0, i64 90000 + %ptr = getelementptr inbounds [100000 x i64], [100000 x i64]* %mem, i64 0, i64 90000 %val = load atomic i64* %ptr unordered, align 8 ret i64 %val } @@ -48,7 +48,7 @@ define void @store_x_i8_seq_cst([100000 x i8]* %mem) { ; CHECK-LABEL: store_x_i8_seq_cst ; CHECK: sync 0 ; CHECK: stbx - %ptr = getelementptr inbounds [100000 x i8]* %mem, i64 0, i64 90000 + %ptr = getelementptr inbounds [100000 x i8], [100000 x i8]* %mem, i64 0, i64 90000 store atomic i8 42, i8* %ptr seq_cst, align 1 ret void } @@ -56,7 +56,7 @@ define void @store_x_i16_release([100000 x i16]* %mem) { ; CHECK-LABEL: store_x_i16_release ; CHECK: sync 1 ; CHECK: sthx - %ptr = getelementptr inbounds [100000 x i16]* %mem, i64 0, i64 90000 + %ptr = getelementptr inbounds [100000 x i16], [100000 x i16]* %mem, i64 0, i64 90000 store atomic i16 42, i16* %ptr release, align 2 ret void } @@ -64,7 +64,7 @@ define void @store_x_i32_monotonic([100000 x i32]* %mem) { ; CHECK-LABEL: store_x_i32_monotonic ; CHECK-NOT: sync ; CHECK: stwx - %ptr = getelementptr inbounds [100000 x i32]* %mem, i64 0, i64 90000 + %ptr = getelementptr inbounds [100000 x i32], [100000 x i32]* %mem, i64 0, i64 90000 store atomic i32 42, i32* %ptr monotonic, align 4 ret void } @@ -75,7 +75,7 @@ define void @store_x_i64_unordered([100000 x i64]* %mem) { ; PPC32: __sync_ ; PPC64-NOT: __sync_ ; PPC64: stdx - %ptr = getelementptr inbounds [100000 x i64]* %mem, i64 0, i64 90000 + %ptr = getelementptr inbounds [100000 x i64], [100000 x i64]* %mem, i64 0, i64 90000 store atomic i64 42, i64* %ptr unordered, align 8 ret void } |