diff options
author | Chris Lattner <sabre@nondot.org> | 2004-01-10 18:49:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-01-10 18:49:43 +0000 |
commit | 44f549b4ebe834aa4b337864ee45ee21c66e8c9a (patch) | |
tree | 12e9bdc2c7c7013ff1931e71c9917d66a3526af1 /lib/Bytecode/Writer/InstructionWriter.cpp | |
parent | be39e43d33fc1436cff6d07ce328068fdcf002d4 (diff) |
Finegrainify namespacification
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10737 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Writer/InstructionWriter.cpp')
-rw-r--r-- | lib/Bytecode/Writer/InstructionWriter.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/Bytecode/Writer/InstructionWriter.cpp b/lib/Bytecode/Writer/InstructionWriter.cpp index d52f24145f..bc5268c943 100644 --- a/lib/Bytecode/Writer/InstructionWriter.cpp +++ b/lib/Bytecode/Writer/InstructionWriter.cpp @@ -18,8 +18,7 @@ #include "llvm/Instructions.h" #include "Support/Statistic.h" #include <algorithm> - -namespace llvm { +using namespace llvm; static Statistic<> NumInstrs("bytecodewriter", "Number of instructions"); @@ -298,4 +297,3 @@ void BytecodeWriter::processInstruction(const Instruction &I) { outputInstructionFormat0(&I, Opcode, Table, Type, Out); } -} // End llvm namespace |