OSDN Git Service

[examples][ORC] Remove an unused parameter from IR in an LLJIT example.
authorLang Hames <lhames@gmail.com>
Fri, 24 Jan 2020 02:09:29 +0000 (18:09 -0800)
committerLang Hames <lhames@gmail.com>
Fri, 24 Jan 2020 03:18:15 +0000 (19:18 -0800)
llvm/examples/LLJITExamples/LLJITWithLazyReexports/LLJITWithLazyReexports.cpp

index 8d5d039..99c3aea 100644 (file)
@@ -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
   }