diff options
author | Chris Lattner <sabre@nondot.org> | 2004-11-16 04:47:33 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-11-16 04:47:33 +0000 |
commit | f242979cd0b57a0ba03f069f649b8a653c12ebdc (patch) | |
tree | 1df7dee48583ba5376bfacf7dffdc2e623ad5d01 /llvm/lib/Target/PowerPC/PPC64CodeEmitter.cpp | |
parent | 6b7652fae5505436a9b1a2932c6e8445bcc28a54 (diff) | |
download | bcm5719-llvm-f242979cd0b57a0ba03f069f649b8a653c12ebdc.tar.gz bcm5719-llvm-f242979cd0b57a0ba03f069f649b8a653c12ebdc.zip |
Simplify namespaces
llvm-svn: 17870
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPC64CodeEmitter.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPC64CodeEmitter.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/llvm/lib/Target/PowerPC/PPC64CodeEmitter.cpp b/llvm/lib/Target/PowerPC/PPC64CodeEmitter.cpp index f2256a19c46..d35ddde4b15 100644 --- a/llvm/lib/Target/PowerPC/PPC64CodeEmitter.cpp +++ b/llvm/lib/Target/PowerPC/PPC64CodeEmitter.cpp @@ -12,8 +12,7 @@ #include "PPC64JITInfo.h" #include "PPC64TargetMachine.h" - -namespace llvm { +using namespace llvm; /// addPassesToEmitMachineCode - Add passes to the specified pass manager to get /// machine code emitted. This uses a MachineCodeEmitter object to handle @@ -40,5 +39,3 @@ void PPC64JITInfo::replaceMachineCodeForFunction (void *Old, void *New) { assert (0 && "PPC64JITInfo::replaceMachineCodeForFunction not implemented"); } -} // end llvm namespace - |