diff options
author | Chris Lattner <sabre@nondot.org> | 2003-12-08 08:06:28 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-12-08 08:06:28 +0000 |
commit | c19aadee66b744311afe6e420847e80822a765f2 (patch) | |
tree | b0fd47bec6852cdad398c66c4f1104fc9f2812f9 /lib/ExecutionEngine/JIT/Intercept.cpp | |
parent | 0c82ee71dc9f99d20e51ae0012973619bcb80194 (diff) |
Finegrainify namespacification
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10318 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/JIT/Intercept.cpp')
-rw-r--r-- | lib/ExecutionEngine/JIT/Intercept.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/ExecutionEngine/JIT/Intercept.cpp b/lib/ExecutionEngine/JIT/Intercept.cpp index 191b57d22a..72ac92a655 100644 --- a/lib/ExecutionEngine/JIT/Intercept.cpp +++ b/lib/ExecutionEngine/JIT/Intercept.cpp @@ -18,8 +18,7 @@ #include "VM.h" #include "Support/DynamicLinker.h" #include <iostream> - -namespace llvm { +using namespace llvm; // AtExitHandlers - List of functions to call when the program exits, // registered with the atexit() library function. @@ -77,5 +76,3 @@ void *VM::getPointerToNamedFunction(const std::string &Name) { return Ptr; } - -} // End llvm namespace |