mirror of
https://github.com/RGBCube/serenity
synced 2025-06-28 21:02:07 +00:00
LibJS: Remove FLATTEN attribute from Interpreter::run_bytecode
This is what caused stack usage to increase so much with the new BC. Revert it for now so we can restore our old stack limit.
This commit is contained in:
parent
9a0a5a79f4
commit
8eaf48888e
1 changed files with 1 additions and 1 deletions
|
@ -273,7 +273,7 @@ ThrowCompletionOr<Value> Interpreter::run(SourceTextModule& module)
|
|||
return js_undefined();
|
||||
}
|
||||
|
||||
FLATTEN void Interpreter::run_bytecode()
|
||||
void Interpreter::run_bytecode()
|
||||
{
|
||||
auto* locals = vm().running_execution_context().locals.data();
|
||||
auto& accumulator = this->accumulator();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue