SyntheticCountsPropagation: Convert tests to opaque pointers
authorMatt Arsenault <Matthew.Arsenault@amd.com>
Sat, 26 Nov 2022 21:15:07 +0000 (16:15 -0500)
committerMatt Arsenault <Matthew.Arsenault@amd.com>
Mon, 28 Nov 2022 14:34:34 +0000 (09:34 -0500)
llvm/test/Transforms/SyntheticCountsPropagation/initial.ll

index 1a52fcd..40f7111 100644 (file)
@@ -42,10 +42,10 @@ define internal void @foo_local_escaped() {
   ret void
 }
 
-declare void @ext(void ()*)
+declare void @ext(ptr)
 
 define void @bar() {
-  call void @ext(void ()* nonnull @foo_local_escaped)
+  call void @ext(ptr nonnull @foo_local_escaped)
   ret void
 }