Skip to content

Commit 3b239b6

Browse files
committed
LibJS/JIT: Remove debug spam in cxx_increment()
1 parent e2f5bfb commit 3b239b6

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Userland/Libraries/LibJS/JIT/Compiler.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,6 @@ void Compiler::compile_jump_conditional(Bytecode::Op::JumpConditional const& op)
164164

165165
[[maybe_unused]] static Value cxx_increment(VM& vm, Value value)
166166
{
167-
dbgln("cxx_increment {}", value);
168167
auto old_value = TRY_OR_SET_EXCEPTION(value.to_numeric(vm));
169168
if (old_value.is_number())
170169
return Value(old_value.as_double() + 1);

0 commit comments

Comments
 (0)