diff options
| author | Chris Lattner <sabre@nondot.org> | 2002-01-20 22:54:45 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2002-01-20 22:54:45 +0000 |
| commit | 7f74a56e2436c40b18a672ad7d58727cd6832329 (patch) | |
| tree | 6a4683a53f7eb71b8a3425008ef21268c2b2c8fd /llvm/lib/Bytecode/Writer/InstructionWriter.cpp | |
| parent | 850d4f6af1a0e9de3fa6e10afb04e3738fcc5d67 (diff) | |
| download | bcm5719-llvm-7f74a56e2436c40b18a672ad7d58727cd6832329.tar.gz bcm5719-llvm-7f74a56e2436c40b18a672ad7d58727cd6832329.zip | |
Changes to build successfully with GCC 3.02
llvm-svn: 1503
Diffstat (limited to 'llvm/lib/Bytecode/Writer/InstructionWriter.cpp')
| -rw-r--r-- | llvm/lib/Bytecode/Writer/InstructionWriter.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/Bytecode/Writer/InstructionWriter.cpp b/llvm/lib/Bytecode/Writer/InstructionWriter.cpp index 825fde6a16b..f047ab5e1c5 100644 --- a/llvm/lib/Bytecode/Writer/InstructionWriter.cpp +++ b/llvm/lib/Bytecode/Writer/InstructionWriter.cpp @@ -28,7 +28,7 @@ typedef unsigned char uchar; // static void outputInstructionFormat0(const Instruction *I, const SlotCalculator &Table, - unsigned Type, deque<uchar> &Out) { + unsigned Type, std::deque<uchar> &Out) { // Opcode must have top two bits clear... output_vbr(I->getOpcode() << 2, Out); // Instruction Opcode ID output_vbr(Type, Out); // Result type @@ -63,7 +63,7 @@ static void outputInstructionFormat0(const Instruction *I, // static void outputInstrVarArgsCall(const Instruction *I, const SlotCalculator &Table, unsigned Type, - deque<uchar> &Out) { + std::deque<uchar> &Out) { assert(isa<CallInst>(I) || isa<InvokeInst>(I)); // Opcode must have top two bits clear... output_vbr(I->getOpcode() << 2, Out); // Instruction Opcode ID @@ -106,7 +106,7 @@ static void outputInstrVarArgsCall(const Instruction *I, // static void outputInstructionFormat1(const Instruction *I, const SlotCalculator &Table, int *Slots, - unsigned Type, deque<uchar> &Out) { + unsigned Type, std::deque<uchar> &Out) { unsigned Opcode = I->getOpcode(); // Instruction Opcode ID // bits Instruction format: @@ -127,7 +127,7 @@ static void outputInstructionFormat1(const Instruction *I, // static void outputInstructionFormat2(const Instruction *I, const SlotCalculator &Table, int *Slots, - unsigned Type, deque<uchar> &Out) { + unsigned Type, std::deque<uchar> &Out) { unsigned Opcode = I->getOpcode(); // Instruction Opcode ID // bits Instruction format: @@ -151,7 +151,7 @@ static void outputInstructionFormat2(const Instruction *I, // static void outputInstructionFormat3(const Instruction *I, const SlotCalculator &Table, int *Slots, - unsigned Type, deque<uchar> &Out) { + unsigned Type, std::deque<uchar> &Out) { unsigned Opcode = I->getOpcode(); // Instruction Opcode ID // bits Instruction format: |

