no bug - fix nullptr to bool conversion at LIR.cpp:95 r=themaid

This commit is contained in:
Trevor Saunders 2014-10-12 14:05:39 -04:00
parent bf9324688d
commit 41fd369c9e

View File

@ -92,7 +92,7 @@ LBlock::init(TempAllocator &alloc)
// Allocate space for the LPhis.
if (!phis_.init(alloc, numLPhis))
return nullptr;
return false;
// For each MIR phi, set up LIR phis as appropriate. We'll fill in their
// operands on each incoming edge, and set their definitions at the start of