Bug 1199719 werr.2 - Remove some of the uninitialized variable noise. r=bbouvier

This commit is contained in:
Nicolas B. Pierron 2015-09-10 22:36:09 +02:00
Родитель 6c59344341
Коммит 399f0c0337
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -1438,7 +1438,9 @@ AsmJSModule::CodeRange::CodeRange(AsmJSExit::BuiltinKind builtin, uint32_t begin
void
AsmJSModule::CodeRange::updateOffsets(jit::MacroAssembler& masm)
{
uint32_t entryBefore, profilingJumpBefore, profilingEpilogueBefore;
uint32_t entryBefore = 0;
uint32_t profilingJumpBefore = 0;
uint32_t profilingEpilogueBefore = 0;
if (isFunction()) {
entryBefore = entry();
profilingJumpBefore = profilingJump();