Skip to content

Commit

Permalink
Unreviewed, build fix for CLoop
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=267881
rdar://121391447

* Source/JavaScriptCore/llint/LowLevelInterpreter.cpp:
(JSC::CLoop::execute):

Canonical link: https://commits.webkit.org/273318@main
  • Loading branch information
Constellation committed Jan 22, 2024
1 parent fd24e6d commit c1f8a9e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Source/JavaScriptCore/llint/LowLevelInterpreter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,14 @@ JSValue CLoop::execute(OpcodeID entryOpcodeID, void* executableAddress, VM* vm,
CLoopRegister metadataTable;
CLoopDoubleRegister d0, d1;

UNUSED_VARIABLE(t0);
UNUSED_VARIABLE(t1);
UNUSED_VARIABLE(t2);
UNUSED_VARIABLE(t3);
UNUSED_VARIABLE(t5);
UNUSED_VARIABLE(t6);
UNUSED_VARIABLE(t7);

struct StackPointerScope {
StackPointerScope(CLoopStack& stack)
: m_stack(stack)
Expand Down

0 comments on commit c1f8a9e

Please sign in to comment.