diff options
author | David Greene <greened@obbligato.org> | 2010-01-05 01:53:59 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2010-01-05 01:53:59 +0000 |
commit | 1df14c41b5426bda18acf7d64aee7e06b94ff959 (patch) | |
tree | c08289841cf943457cb8fed97be779fa645019fe /llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp | |
parent | 33f80d2303b524231dd1c5d057d3363ea94e8405 (diff) | |
download | bcm5719-llvm-1df14c41b5426bda18acf7d64aee7e06b94ff959.tar.gz bcm5719-llvm-1df14c41b5426bda18acf7d64aee7e06b94ff959.zip |
These should probably be errs().
llvm-svn: 92673
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp b/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp index b442dfc9ce3..c02d84f1a59 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp +++ b/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp @@ -279,13 +279,13 @@ GenericValue Interpreter::callExternalFunction(Function *F, #endif // USE_LIBFFI if (F->getName() == "__main") - dbgs() << "Tried to execute an unknown external function: " + errs() << "Tried to execute an unknown external function: " << F->getType()->getDescription() << " __main\n"; else llvm_report_error("Tried to execute an unknown external function: " + F->getType()->getDescription() + " " +F->getName()); #ifndef USE_LIBFFI - dbgs() << "Recompiling LLVM with --enable-libffi might help.\n"; + errs() << "Recompiling LLVM with --enable-libffi might help.\n"; #endif return GenericValue(); } @@ -397,7 +397,7 @@ GenericValue lle_X_sprintf(const FunctionType *FT, case 's': sprintf(Buffer, FmtBuf, (char*)GVTOP(Args[ArgNo++])); break; default: - dbgs() << "<unknown printf code '" << *FmtStr << "'!>"; + errs() << "<unknown printf code '" << *FmtStr << "'!>"; ArgNo++; break; } strcpy(OutputBuffer, Buffer); |