summaryrefslogtreecommitdiff
path: root/polly/test/CodeGen/simple_vec_large_width.ll
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/CodeGen/simple_vec_large_width.ll')
-rw-r--r--polly/test/CodeGen/simple_vec_large_width.ll12
1 files changed, 6 insertions, 6 deletions
diff --git a/polly/test/CodeGen/simple_vec_large_width.ll b/polly/test/CodeGen/simple_vec_large_width.ll
index 6b5b6e287bf3..4ad3b8987616 100644
--- a/polly/test/CodeGen/simple_vec_large_width.ll
+++ b/polly/test/CodeGen/simple_vec_large_width.ll
@@ -10,14 +10,14 @@ define void @simple_vec_large_width() nounwind {
; <label>:1 ; preds = %4, %0
%indvar = phi i64 [ %indvar.next, %4 ], [ 0, %0 ]
- %scevgep = getelementptr [1024 x float], [1024 x float]* @B, i64 0, i64 %indvar
- %scevgep1 = getelementptr [1024 x float], [1024 x float]* @A, i64 0, i64 %indvar
+ %scevgep = getelementptr [1024 x float], ptr @B, i64 0, i64 %indvar
+ %scevgep1 = getelementptr [1024 x float], ptr @A, i64 0, i64 %indvar
%exitcond = icmp ne i64 %indvar, 15
br i1 %exitcond, label %2, label %5
; <label>:2 ; preds = %1
- %3 = load float, float* %scevgep1, align 4
- store float %3, float* %scevgep, align 4
+ %3 = load float, ptr %scevgep1, align 4
+ store float %3, ptr %scevgep, align 4
br label %4
; <label>:4 ; preds = %2
@@ -30,10 +30,10 @@ define void @simple_vec_large_width() nounwind {
define i32 @main() nounwind {
call void @simple_vec_large_width()
- %1 = load float, float* getelementptr inbounds ([1024 x float], [1024 x float]* @A, i64 0, i64 42), align 8
+ %1 = load float, ptr getelementptr inbounds ([1024 x float], ptr @A, i64 0, i64 42), align 8
%2 = fptosi float %1 to i32
ret i32 %2
}
-; CHECK: [[VEC1:%[a-zA-Z0-9_]+_full]] = load <15 x float>, <15 x float>*
+; CHECK: [[VEC1:%[a-zA-Z0-9_]+_full]] = load <15 x float>, ptr
; CHECK: store <15 x float> [[VEC1]]