From 9850a666d959bbb362b7bdd5b4e5a100a573df7e Mon Sep 17 00:00:00 2001 From: Daniel Holbert Date: Mon, 29 Oct 2012 13:40:20 -0700 Subject: [PATCH] Bug 806442: Remove unused variable "slot" from Compiler::markUndefinedLocal. r=billm --- js/src/methodjit/Compiler.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/js/src/methodjit/Compiler.cpp b/js/src/methodjit/Compiler.cpp index 9547786874f0..feb44177a62f 100644 --- a/js/src/methodjit/Compiler.cpp +++ b/js/src/methodjit/Compiler.cpp @@ -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); }