From 67236d957338519d3fbdacfb954bc024230cba47 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 1 Nov 2022 11:44:41 +0100 Subject: [PATCH] LibJS: Disable bytecode optimizations again Bytecode optimizations still break test262, so let's not enable this until they have been confirmed to work there. --- Userland/Libraries/LibJS/Bytecode/Interpreter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibJS/Bytecode/Interpreter.h b/Userland/Libraries/LibJS/Bytecode/Interpreter.h index a1646b15b6e..c6451eaf69e 100644 --- a/Userland/Libraries/LibJS/Bytecode/Interpreter.h +++ b/Userland/Libraries/LibJS/Bytecode/Interpreter.h @@ -71,7 +71,7 @@ public: None, Optimize, __Count, - Default = Optimize, + Default = None, }; static Bytecode::PassManager& optimization_pipeline(OptimizationLevel = OptimizationLevel::Default);