Bug 710970: remove never-failed null check found by PVS-Studio, r=dvander

This commit is contained in:
David Mandelin 2011-12-15 14:11:48 -08:00
parent c998f71a55
commit 853a850380

View File

@ -546,10 +546,6 @@ mjit::Compiler::performCompilation(JITScript **jitp)
JaegerSpew(JSpew_Scripts, "successfully compiled (code \"%p\") (size \"%u\")\n",
(*jitp)->code.m_code.executableAddress(), unsigned((*jitp)->code.m_size));
if (!*jitp)
return Compile_Abort;
return Compile_Okay;
}