diff options
Diffstat (limited to 'lib/ExecutionEngine/JIT/JIT.cpp')
-rw-r--r-- | lib/ExecutionEngine/JIT/JIT.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/ExecutionEngine/JIT/JIT.cpp b/lib/ExecutionEngine/JIT/JIT.cpp index 61d9629d93..c5a70eade5 100644 --- a/lib/ExecutionEngine/JIT/JIT.cpp +++ b/lib/ExecutionEngine/JIT/JIT.cpp @@ -1,4 +1,4 @@ -//===-- JIT.cpp - LLVM Just in Time Compiler ------------------------------===// +//===-- JIT.cpp - LLVM Just-In-Time Compiler ------------------------------===// // // The LLVM Compiler Infrastructure // @@ -19,13 +19,12 @@ #include "llvm/Target/TargetMachine.h" #include "llvm/Target/TargetMachineImpls.h" #include "Support/CommandLine.h" +using namespace llvm; #if !defined(ENABLE_X86_JIT) && !defined(ENABLE_SPARC_JIT) #define NO_JITS_ENABLED #endif -namespace llvm { - namespace { enum ArchName { x86, Sparc }; @@ -120,5 +119,3 @@ GenericValue VM::run(Function *F, const std::vector<GenericValue> &ArgValues) rv.IntVal = ExitCode; return rv; } - -} // End llvm namespace |