[llvm] 46aa5c1 - [examples][ORC] Remove an unused parameter from IR in an LLJIT example.
Lang Hames via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 23 19:27:00 PST 2020
Author: Lang Hames
Date: 2020-01-23T19:18:15-08:00
New Revision: 46aa5c13c5fcefd3a33740d18cddd9155db37c79
URL: https://github.com/llvm/llvm-project/commit/46aa5c13c5fcefd3a33740d18cddd9155db37c79
DIFF: https://github.com/llvm/llvm-project/commit/46aa5c13c5fcefd3a33740d18cddd9155db37c79.diff
LOG: [examples][ORC] Remove an unused parameter from IR in an LLJIT example.
Added:
Modified:
llvm/examples/LLJITExamples/LLJITWithLazyReexports/LLJITWithLazyReexports.cpp
Removed:
################################################################################
diff --git a/llvm/examples/LLJITExamples/LLJITWithLazyReexports/LLJITWithLazyReexports.cpp b/llvm/examples/LLJITExamples/LLJITWithLazyReexports/LLJITWithLazyReexports.cpp
index 8d5d0395a7cb..99c3aead224e 100644
--- a/llvm/examples/LLJITExamples/LLJITWithLazyReexports/LLJITWithLazyReexports.cpp
+++ b/llvm/examples/LLJITExamples/LLJITWithLazyReexports/LLJITWithLazyReexports.cpp
@@ -54,7 +54,7 @@ const llvm::StringRef FooMod =
const llvm::StringRef BarMod =
R"(
- define i32 @bar_body(i32 %x) {
+ define i32 @bar_body() {
entry:
ret i32 2
}
More information about the llvm-commits
mailing list