From 796f5e264a7c018e88e6d77749cdc80e8f79faca Mon Sep 17 00:00:00 2001 From: "Travis E. Oliphant" Date: Thu, 8 Mar 2012 07:18:18 -0600 Subject: [PATCH] Use correct casing for print method. --- llvm/extra.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/extra.cpp b/llvm/extra.cpp index 8e68ad8..e2d1e12 100644 --- a/llvm/extra.cpp +++ b/llvm/extra.cpp @@ -355,7 +355,7 @@ LLVMModuleRef LLVMGetModuleFromAssembly(const char *asmtext, unsigned txtlen, llvm::getGlobalContext()))) { std::string s; llvm::raw_string_ostream buf(s); - error.Print("llvm-py", buf); + error.print("llvm-py", buf); *out = strdup(buf.str().c_str()); return NULL; }