[llvm] bd92b7b - [OrcV2Examples] Fix test with opaque pointers
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 2 03:18:42 PDT 2022
Author: Nikita Popov
Date: 2022-06-02T12:17:56+02:00
New Revision: bd92b7b3c1f6d423712b8b36fe593f7dfcd373cf
URL: https://github.com/llvm/llvm-project/commit/bd92b7b3c1f6d423712b8b36fe593f7dfcd373cf
DIFF: https://github.com/llvm/llvm-project/commit/bd92b7b3c1f6d423712b8b36fe593f7dfcd373cf.diff
LOG: [OrcV2Examples] Fix test with opaque pointers
The other two modules now use opaque pointers, so make sure this
one does as well.
Added:
Modified:
llvm/test/Examples/OrcV2Examples/Inputs/main-mod.ll
Removed:
################################################################################
diff --git a/llvm/test/Examples/OrcV2Examples/Inputs/main-mod.ll b/llvm/test/Examples/OrcV2Examples/Inputs/main-mod.ll
index d3b39061b56d2..e953eb1189509 100644
--- a/llvm/test/Examples/OrcV2Examples/Inputs/main-mod.ll
+++ b/llvm/test/Examples/OrcV2Examples/Inputs/main-mod.ll
@@ -1,4 +1,4 @@
-define i32 @main(i32 %argc, i8** %argv) {
+define i32 @main(i32 %argc, ptr %argv) {
entry:
%and = and i32 %argc, 1
%tobool = icmp eq i32 %and, 0
More information about the llvm-commits
mailing list