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 | c0e1b071b98b2c76d83e6b25225822aaa5724db0 (patch) | |
| tree | 9c49c231e3944a4a9ac063eb75702e1ddbf1106b /llvm/lib/ExecutionEngine/JIT/JIT.cpp | |
| parent | bd7356a5d306eb8be53ed8abd6a6aa1b4ac8b451 (diff) | |
| download | bcm5719-llvm-c0e1b071b98b2c76d83e6b25225822aaa5724db0.tar.gz bcm5719-llvm-c0e1b071b98b2c76d83e6b25225822aaa5724db0.zip | |
Finegrainify namespacification
llvm-svn: 10318
Diffstat (limited to 'llvm/lib/ExecutionEngine/JIT/JIT.cpp')
| -rw-r--r-- | llvm/lib/ExecutionEngine/JIT/JIT.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/JIT.cpp b/llvm/lib/ExecutionEngine/JIT/JIT.cpp index 61d9629d93e..c5a70eade58 100644 --- a/llvm/lib/ExecutionEngine/JIT/JIT.cpp +++ b/llvm/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 |

