Bug 806442: Remove unused variable "slot" from Compiler::markUndefinedLocal. r=billm

This commit is contained in:
Daniel Holbert 2012-10-29 13:40:20 -07:00
Родитель fda5be2065
Коммит 9850a666d9
1 изменённых файлов: 0 добавлений и 1 удалений

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

@ -1290,7 +1290,6 @@ void
mjit::Compiler::markUndefinedLocal(uint32_t offset, uint32_t i)
{
uint32_t depth = ssa.getFrame(a->inlineIndex).depth;
uint32_t slot = LocalSlot(script_, i);
Address local(JSFrameReg, sizeof(StackFrame) + (depth + i) * sizeof(Value));
masm.storeValue(UndefinedValue(), local);
}