[Polly] Convert some tests to opaque pointers (NFC)
GitOrigin-RevId: b332499a94df11870dfc7598645c59656deb933d
diff --git a/test/ScopInfo/user_context.ll b/test/ScopInfo/user_context.ll
index 8b754dd..46232cd 100644
--- a/test/ScopInfo/user_context.ll
+++ b/test/ScopInfo/user_context.ll
@@ -17,14 +17,14 @@
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128"
-define void @f(i64* nocapture %a, i64 %N) nounwind {
+define void @f(ptr nocapture %a, i64 %N) nounwind {
entry:
br label %bb
bb: ; preds = %bb, %entry
%i = phi i64 [ 0, %entry ], [ %i.inc, %bb ]
- %scevgep = getelementptr i64, i64* %a, i64 %i
- store i64 %i, i64* %scevgep
+ %scevgep = getelementptr i64, ptr %a, i64 %i
+ store i64 %i, ptr %scevgep
%i.inc = add nsw i64 %i, 1
%exitcond = icmp eq i64 %i.inc, %N
br i1 %exitcond, label %return, label %bb