diff options
author | Chris Lattner <sabre@nondot.org> | 2004-02-12 16:05:03 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-02-12 16:05:03 +0000 |
commit | 9fc77d1358b4d5c2d71ce7b94bafacbbb35956c6 (patch) | |
tree | 6fb05513e8b772a99510baf4558c986f385463cb /include/llvm/CodeGen/MachineInstr.h | |
parent | 3081db8d01aaac5b3f9e9a30b36cb3eeb8c3cb0a (diff) |
Remove a dead field from MachineInstr!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11347 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineInstr.h')
-rw-r--r-- | include/llvm/CodeGen/MachineInstr.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h index 89731979a5..57edc7d43e 100644 --- a/include/llvm/CodeGen/MachineInstr.h +++ b/include/llvm/CodeGen/MachineInstr.h @@ -333,7 +333,6 @@ private: class MachineInstr { int opCode; // the opcode - unsigned opCodeFlags; // flags modifying instrn behavior std::vector<MachineOperand> operands; // the operands unsigned numImplicitRefs; // number of implicit operands MachineInstr* prev, *next; // links for our intrusive list |