summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2011-09-29 01:47:36 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2011-09-29 01:47:36 +0000
commitcc84cda91997bf6fc93512a56c3a12eecaaa2d88 (patch)
treeaf94207f5838a30fe5488703c3ad416aa7171300 /include
parent0c01bc385a4c01bee012bda504c8ce0c3d402f2c (diff)
downloadllvm-cc84cda91997bf6fc93512a56c3a12eecaaa2d88.tar.gz
llvm-cc84cda91997bf6fc93512a56c3a12eecaaa2d88.tar.bz2
llvm-cc84cda91997bf6fc93512a56c3a12eecaaa2d88.tar.xz
Remove NumImplicitOps which is now unused.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140767 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/MachineInstr.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h
index 5b3d3ea62a..cbeebc4b0d 100644
--- a/include/llvm/CodeGen/MachineInstr.h
+++ b/include/llvm/CodeGen/MachineInstr.h
@@ -58,8 +58,6 @@ public:
};
private:
const MCInstrDesc *MCID; // Instruction descriptor.
- uint16_t NumImplicitOps; // Number of implicit operands (which
- // are determined at construction time).
uint8_t Flags; // Various bits of additional
// information about machine
@@ -78,9 +76,6 @@ private:
MachineBasicBlock *Parent; // Pointer to the owning basic block.
DebugLoc debugLoc; // Source line information.
- // OperandComplete - Return true if it's illegal to add a new operand
- bool OperandsComplete() const;
-
MachineInstr(const MachineInstr&); // DO NOT IMPLEMENT
void operator=(const MachineInstr&); // DO NOT IMPLEMENT