diff options
author | Chris Lattner <sabre@nondot.org> | 2003-12-14 23:25:48 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-12-14 23:25:48 +0000 |
commit | f7a743d7ed6e96af4c836e512c9cd59812c8186e (patch) | |
tree | c73611c5326479fe4d7167965484956f13d389f5 /lib/ExecutionEngine/Interpreter/Interpreter.cpp | |
parent | 2cdd21c2e4d855500dfb53f77aa74da53ccf9de6 (diff) |
Finegrainify namespacification
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10465 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/Interpreter/Interpreter.cpp')
-rw-r--r-- | lib/ExecutionEngine/Interpreter/Interpreter.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.cpp b/lib/ExecutionEngine/Interpreter/Interpreter.cpp index bb14cd2ee8..663d9a6b36 100644 --- a/lib/ExecutionEngine/Interpreter/Interpreter.cpp +++ b/lib/ExecutionEngine/Interpreter/Interpreter.cpp @@ -16,8 +16,7 @@ #include "Interpreter.h" #include "llvm/Module.h" #include "llvm/DerivedTypes.h" - -namespace llvm { +using namespace llvm; /// create - Create a new interpreter object. This can never fail. /// @@ -100,4 +99,3 @@ GenericValue Interpreter::run(Function *F, return rv; } -} // End llvm namespace |