[llvm] ceed9db - SyntheticCountsPropagation: Convert tests to opaque pointers
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Mon Nov 28 06:47:50 PST 2022
Author: Matt Arsenault
Date: 2022-11-28T09:34:34-05:00
New Revision: ceed9db4cf26262e637c6fa88c5aa14fbf53e870
URL: https://github.com/llvm/llvm-project/commit/ceed9db4cf26262e637c6fa88c5aa14fbf53e870
DIFF: https://github.com/llvm/llvm-project/commit/ceed9db4cf26262e637c6fa88c5aa14fbf53e870.diff
LOG: SyntheticCountsPropagation: Convert tests to opaque pointers
Added:
Modified:
llvm/test/Transforms/SyntheticCountsPropagation/initial.ll
Removed:
################################################################################
diff --git a/llvm/test/Transforms/SyntheticCountsPropagation/initial.ll b/llvm/test/Transforms/SyntheticCountsPropagation/initial.ll
index 1a52fcd6683b4..40f7111247e4a 100644
--- a/llvm/test/Transforms/SyntheticCountsPropagation/initial.ll
+++ b/llvm/test/Transforms/SyntheticCountsPropagation/initial.ll
@@ -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
}
More information about the llvm-commits
mailing list