diff options
author | Bill Wendling <isanbard@gmail.com> | 2006-12-07 20:04:42 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2006-12-07 20:04:42 +0000 |
commit | 22e978a736cb34291c15de07e5b31d395d08dee5 (patch) | |
tree | fefd1c0e6a2b008cd41efe30abd584ddd863c4ee /llvm/lib/ExecutionEngine/JIT/Intercept.cpp | |
parent | 2e169c37eae1db712bb8d46b86b14e94e12f6141 (diff) | |
download | bcm5719-llvm-22e978a736cb34291c15de07e5b31d395d08dee5.tar.gz bcm5719-llvm-22e978a736cb34291c15de07e5b31d395d08dee5.zip |
Removing even more <iostream> includes.
llvm-svn: 32320
Diffstat (limited to 'llvm/lib/ExecutionEngine/JIT/Intercept.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/JIT/Intercept.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/Intercept.cpp b/llvm/lib/ExecutionEngine/JIT/Intercept.cpp index db6165f7818..f370e5bb0a8 100644 --- a/llvm/lib/ExecutionEngine/JIT/Intercept.cpp +++ b/llvm/lib/ExecutionEngine/JIT/Intercept.cpp @@ -18,7 +18,6 @@ #include "JIT.h" #include "llvm/System/DynamicLibrary.h" #include "llvm/Config/config.h" -#include <iostream> using namespace llvm; // AtExitHandlers - List of functions to call when the program exits, @@ -115,8 +114,8 @@ void *JIT::getPointerToNamedFunction(const std::string &Name) { if (Ptr) return Ptr; } - std::cerr << "ERROR: Program used external function '" << Name - << "' which could not be resolved!\n"; + cerr << "ERROR: Program used external function '" << Name + << "' which could not be resolved!\n"; abort(); return 0; } |