OSDN Git Service

Call the correct function name. Patch from Stephane Letz.
authorNick Lewycky <nicholas@mxc.ca>
Sat, 16 Jun 2007 16:17:35 +0000 (16:17 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Sat, 16 Jun 2007 16:17:35 +0000 (16:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37614 91177308-0d34-0410-b5e6-96231b3b80d8

test/Other/2007-06-16-Funcname.ll [new file with mode: 0644]
tools/llvm2cpp/CppWriter.cpp

diff --git a/test/Other/2007-06-16-Funcname.ll b/test/Other/2007-06-16-Funcname.ll
new file mode 100644 (file)
index 0000000..a2cdd18
--- /dev/null
@@ -0,0 +1,7 @@
+; RUN: llvm-as < %s | llvm2cpp -funcname=WAKKA | not grep makeLLVMModule
+; PR1515
+
+define void @foo() {
+  ret void
+}
+
index 86e2661..1076b59 100644 (file)
@@ -1690,7 +1690,7 @@ void CppWriter::printProgram(
   Out << "using namespace llvm;\n\n";
   Out << "Module* " << fname << "();\n\n";
   Out << "int main(int argc, char**argv) {\n";
-  Out << "  Module* Mod = makeLLVMModule();\n";
+  Out << "  Module* Mod = " << fname << "();\n";
   Out << "  verifyModule(*Mod, PrintMessageAction);\n";
   Out << "  std::cerr.flush();\n";
   Out << "  std::cout.flush();\n";