diff options
author | Chris Lattner <sabre@nondot.org> | 2006-05-04 18:16:01 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-05-04 18:16:01 +0000 |
commit | 8b915b4ed2c6e43413937ac71c0cbcf476ad1a98 (patch) | |
tree | dc4cddca818202794ae10be1bf2bad36c8a6f344 /lib/CodeGen/MachineInstr.cpp | |
parent | 2d90ac7ca6117d3b160dde8a4f322c1079a6ffce (diff) |
Remove and simplify some more machineinstr/machineoperand stuff.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28105 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineInstr.cpp')
-rw-r--r-- | lib/CodeGen/MachineInstr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/MachineInstr.cpp b/lib/CodeGen/MachineInstr.cpp index f2a604cf6d..2cb5119e49 100644 --- a/lib/CodeGen/MachineInstr.cpp +++ b/lib/CodeGen/MachineInstr.cpp @@ -41,7 +41,7 @@ namespace llvm { /// add* methods below to fill up the operands, instead of the Set methods. /// Eventually, the "resizing" ctors will be phased out. /// -MachineInstr::MachineInstr(short opcode, unsigned numOperands, bool XX, bool YY) +MachineInstr::MachineInstr(short opcode, unsigned numOperands) : Opcode(opcode), parent(0) { operands.reserve(numOperands); // Make sure that we get added to a machine basicblock |