diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-01-20 22:48:59 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-01-20 22:48:59 +0000 |
commit | 4888d5e98c7ae1fed28e41d75a65ddf70b25b03d (patch) | |
tree | 77418c9e4a3c6c38a13fcb1f9801bc740abf1e7b /include/llvm/CodeGen/LiveVariables.h | |
parent | b442d7c6bf920b892b4b098923c1652700ee07e6 (diff) | |
download | external_llvm-4888d5e98c7ae1fed28e41d75a65ddf70b25b03d.zip external_llvm-4888d5e98c7ae1fed28e41d75a65ddf70b25b03d.tar.gz external_llvm-4888d5e98c7ae1fed28e41d75a65ddf70b25b03d.tar.bz2 |
Delete an unused member variable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148594 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/LiveVariables.h')
-rw-r--r-- | include/llvm/CodeGen/LiveVariables.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/llvm/CodeGen/LiveVariables.h b/include/llvm/CodeGen/LiveVariables.h index 7ba901f..71062a2 100644 --- a/include/llvm/CodeGen/LiveVariables.h +++ b/include/llvm/CodeGen/LiveVariables.h @@ -85,17 +85,11 @@ public: /// SparseBitVector<> AliveBlocks; - /// NumUses - Number of uses of this register across the entire function. - /// - unsigned NumUses; - /// Kills - List of MachineInstruction's which are the last use of this /// virtual register (kill it) in their basic block. /// std::vector<MachineInstr*> Kills; - VarInfo() : NumUses(0) {} - /// removeKill - Delete a kill corresponding to the specified /// machine instruction. Returns true if there was a kill /// corresponding to this instruction, false otherwise. |