1
Fork 0
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:
Timothy Flynn 2024-02-20 14:08:33 -05:00 committed by Tim Flynn
parent 9a0a5a79f4
commit 8eaf48888e

View file

@ -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();