From 3b239b64ffb2c20cc2da75fb03d6a57dd8e83d76 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 27 Oct 2023 11:15:28 +0200 Subject: [PATCH] LibJS/JIT: Remove debug spam in cxx_increment() --- Userland/Libraries/LibJS/JIT/Compiler.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/Libraries/LibJS/JIT/Compiler.cpp b/Userland/Libraries/LibJS/JIT/Compiler.cpp index 882b0abda6..47406d6446 100644 --- a/Userland/Libraries/LibJS/JIT/Compiler.cpp +++ b/Userland/Libraries/LibJS/JIT/Compiler.cpp @@ -164,7 +164,6 @@ void Compiler::compile_jump_conditional(Bytecode::Op::JumpConditional const& op) [[maybe_unused]] static Value cxx_increment(VM& vm, Value value) { - dbgln("cxx_increment {}", value); auto old_value = TRY_OR_SET_EXCEPTION(value.to_numeric(vm)); if (old_value.is_number()) return Value(old_value.as_double() + 1);