summaryrefslogtreecommitdiffstats
path: root/llvm/lib/ExecutionEngine/JIT/Intercept.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2006-12-07 20:04:42 +0000
committerBill Wendling <isanbard@gmail.com>2006-12-07 20:04:42 +0000
commit22e978a736cb34291c15de07e5b31d395d08dee5 (patch)
treefefd1c0e6a2b008cd41efe30abd584ddd863c4ee /llvm/lib/ExecutionEngine/JIT/Intercept.cpp
parent2e169c37eae1db712bb8d46b86b14e94e12f6141 (diff)
downloadbcm5719-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.cpp5
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;
}
OpenPOWER on IntegriCloud