From e4941a36b0f496e0be6e8594b86b1c81eca74c06 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 10 Apr 2025 12:21:22 +0200 Subject: [PATCH] LibJS: Remove unused struct NativeStackFrame --- Libraries/LibJS/Runtime/VM.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Libraries/LibJS/Runtime/VM.cpp b/Libraries/LibJS/Runtime/VM.cpp index 53e11d7d5b9..2bf87066011 100644 --- a/Libraries/LibJS/Runtime/VM.cpp +++ b/Libraries/LibJS/Runtime/VM.cpp @@ -759,13 +759,6 @@ void VM::pop_execution_context() on_call_stack_emptied(); } -#if ARCH(X86_64) -struct [[gnu::packed]] NativeStackFrame { - NativeStackFrame* prev; - FlatPtr return_address; -}; -#endif - static RefPtr get_source_range(ExecutionContext const* context) { // native function