Skip to content

Commit

Permalink
Fix accidentally removed initialization of m_VNFunc4Map
Browse files Browse the repository at this point in the history
During my last change, I've accidentally left out the m_VNFunc4Map
while reordering the initialization list.
  • Loading branch information
janvorli committed Mar 26, 2015
1 parent 32c2a3b commit 2b45ae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jit/valuenum.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ ValueNumStore::ValueNumStore(Compiler* comp, IAllocator* alloc)
#endif
m_nextChunkBase(0), m_fixedPointMapSels(alloc, 8), m_chunks(alloc, 8),
m_intCnsMap(NULL), m_longCnsMap(NULL), m_handleMap(NULL), m_floatCnsMap(NULL), m_doubleCnsMap(NULL), m_byrefCnsMap(NULL),
m_VNFunc0Map(NULL), m_VNFunc1Map(NULL), m_VNFunc2Map(NULL), m_VNFunc3Map(NULL),
m_VNFunc0Map(NULL), m_VNFunc1Map(NULL), m_VNFunc2Map(NULL), m_VNFunc3Map(NULL), m_VNFunc4Map(NULL),
m_uPtrToLocNotAFieldCount(1)
{
// We have no current allocation chunks.
Expand Down

0 comments on commit 2b45ae8

Please sign in to comment.