소스 검색

LibJS/JIT: Remove debug spam in cxx_increment()

Andreas Kling 1 년 전
부모
커밋
3b239b64ff
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      Userland/Libraries/LibJS/JIT/Compiler.cpp

+ 0 - 1
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);