LibJS: Disable bytecode optimizations again

Bytecode optimizations still break test262, so let's not enable this
until they have been confirmed to work there.
This commit is contained in:
Andreas Kling 2022-11-01 11:44:41 +01:00
parent 4a06e68ecd
commit 67236d9573
Notes: sideshowbarker 2024-07-17 08:45:34 +09:00

View file

@ -71,7 +71,7 @@ public:
None,
Optimize,
__Count,
Default = Optimize,
Default = None,
};
static Bytecode::PassManager& optimization_pipeline(OptimizationLevel = OptimizationLevel::Default);