1From fb81a5de7798eb7f68e0de1c281671553e1aa19d Mon Sep 17 00:00:00 2001 2From: Michael Catanzaro <mcatanzaro@redhat.com> 3Date: Mon, 5 Feb 2024 11:00:49 -0600 4Subject: [PATCH] =?UTF-8?q?LowLevelInterpreter.cpp:339:21:=20error:=20?= 5 =?UTF-8?q?=E2=80=98t6=E2=80=99=20was=20not=20declared=20in=20this=20scope?= 6 =?UTF-8?q?=20https://bugs.webkit.org/show=5Fbug.cgi=3Fid=3D268739?= 7MIME-Version: 1.0 8Content-Type: text/plain; charset=UTF-8 9Content-Transfer-Encoding: 8bit 10 11Unreviewed build fix. Seems a backport went badly, and we didn't notice 12because the code is architecture-specific. 13 14* Source/JavaScriptCore/llint/LowLevelInterpreter.cpp: 15(JSC::CLoop::execute): 16 17Upstream-Status: Backport [https://github.com/WebKit/WebKit/commit/3d5373575695b293b8559155431d0079a6153aff] 18Signed-off-by: Khem Raj <raj.khem@gmail.com> 19--- 20 Source/JavaScriptCore/llint/LowLevelInterpreter.cpp | 2 -- 21 1 file changed, 2 deletions(-) 22 23diff --git a/Source/JavaScriptCore/llint/LowLevelInterpreter.cpp b/Source/JavaScriptCore/llint/LowLevelInterpreter.cpp 24index 75cecbbd..b1020ea4 100644 25--- a/Source/JavaScriptCore/llint/LowLevelInterpreter.cpp 26+++ b/Source/JavaScriptCore/llint/LowLevelInterpreter.cpp 27@@ -336,8 +336,6 @@ JSValue CLoop::execute(OpcodeID entryOpcodeID, void* executableAddress, VM* vm, 28 UNUSED_VARIABLE(t2); 29 UNUSED_VARIABLE(t3); 30 UNUSED_VARIABLE(t5); 31- UNUSED_VARIABLE(t6); 32- UNUSED_VARIABLE(t7); 33 34 struct StackPointerScope { 35 StackPointerScope(CLoopStack& stack) 36