Simplify namespaces

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17870 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-11-16 04:47:33 +00:00
parent 8f1ac9f90d
commit eea9b134fc
2 changed files with 2 additions and 8 deletions

View File

@ -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

View File

@ -21,8 +21,7 @@
#include "llvm/CodeGen/MachineInstrBuilder.h"
#include "llvm/CodeGen/Passes.h"
#include "llvm/Support/Debug.h"
namespace llvm {
using namespace llvm;
namespace {
class JITResolver {
@ -347,5 +346,3 @@ void PPC32JITInfo::replaceMachineCodeForFunction (void *Old, void *New) {
#include "PPC32GenCodeEmitter.inc"
} // end llvm namespace