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
Родитель d25971d03b
Коммит c259392be9
1 изменённых файлов: 0 добавлений и 4 удалений

Просмотреть файл

@ -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;
}