diff options
author | Swaroop Sridhar <Swaroop.Sridhar@microsoft.com> | 2015-07-06 15:36:58 -0700 |
---|---|---|
committer | Swaroop Sridhar <Swaroop.Sridhar@microsoft.com> | 2015-07-06 15:36:58 -0700 |
commit | d2fbfd3688a2669f20be904e1bcc8bfe2de19e7d (patch) | |
tree | 8357391df9783652cc5f6b9f8c5d4dd74ad72ad7 | |
parent | c2218edd754accdb521d101ca5c7f6d97eaaff23 (diff) | |
download | coreclr-d2fbfd3688a2669f20be904e1bcc8bfe2de19e7d.tar.gz coreclr-d2fbfd3688a2669f20be904e1bcc8bfe2de19e7d.tar.bz2 coreclr-d2fbfd3688a2669f20be904e1bcc8bfe2de19e7d.zip |
Remove a few Unused Definitions
Remove three unused local variable definitions --
which caused warnings in the LLILC build.
-rw-r--r-- | src/gcinfo/gcinfoencoder.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/gcinfo/gcinfoencoder.cpp b/src/gcinfo/gcinfoencoder.cpp index 3aa8f0ead9..0b243ab901 100644 --- a/src/gcinfo/gcinfoencoder.cpp +++ b/src/gcinfo/gcinfoencoder.cpp @@ -1216,7 +1216,6 @@ void GcInfoEncoder::Build() UINT32 i; for(i = 0; i < m_NumSlots && m_SlotTable[i].IsRegister(); i++) { - GcSlotDesc* pSlotDesc = &m_SlotTable[i]; if(m_SlotTable[i].IsDeleted()) { numDeleted++; @@ -1226,7 +1225,6 @@ void GcInfoEncoder::Build() for(; i < m_NumSlots && !m_SlotTable[i].IsUntracked(); i++) { - GcSlotDesc* pSlotDesc = &m_SlotTable[i]; if(m_SlotTable[i].IsDeleted()) { numDeleted++; @@ -2013,7 +2011,6 @@ void GcInfoEncoder::SizeofSlotStateVarLengthVector(const BitArray &vector, sizeofRLENeg = 2; UINT32 rleStart = 0; - UINT32 rleDeleted = 0; bool fPrev = false; UINT32 i; for(i = 0; i < m_NumSlots && !m_SlotTable[i].IsUntracked(); i++) |