diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h index 106af9e5bfd..54ea96d5558 100644 --- a/include/llvm/CodeGen/MachineInstr.h +++ b/include/llvm/CodeGen/MachineInstr.h @@ -14,7 +14,6 @@ #include #include class Instruction; -using std::vector; //--------------------------------------------------------------------------- // class MachineOperand @@ -281,10 +280,10 @@ class MachineInstr : public Annotable, // Values are annotable public NonCopyable { // Disable copy operations MachineOpCode opCode; // the opcode OpCodeMask opCodeMask; // extra bits for variants of an opcode - vector operands; // the operands - vector implicitRefs; // values implicitly referenced by this - vector implicitIsDef; // machine instruction (eg, call args) - vector implicitIsDefAndUse; // + std::vector operands; // the operands + std::vector implicitRefs; // values implicitly referenced by this + std::vector implicitIsDef; // machine instruction (eg, call args) + std::vector implicitIsDefAndUse; hash_set regsUsed; // all machine registers used for this // instruction, including regs used // to save values across the instr.