From e111d3ae8d3d88e1435e2a28adb1a7ed7277f70a Mon Sep 17 00:00:00 2001 From: git Date: Mon, 6 Mar 2023 07:24:02 +0000 Subject: [PATCH] * remove trailing spaces. [ci skip] --- lib/ruby_vm/mjit/insn_compiler.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ruby_vm/mjit/insn_compiler.rb b/lib/ruby_vm/mjit/insn_compiler.rb index 33c7db5435..e868534200 100644 --- a/lib/ruby_vm/mjit/insn_compiler.rb +++ b/lib/ruby_vm/mjit/insn_compiler.rb @@ -1273,7 +1273,7 @@ module RubyVM::MJIT # @param ctx [RubyVM::MJIT::Context] # @param asm [RubyVM::MJIT::Assembler] def jit_push_frame(jit, ctx, asm, ci, cme, flags, argc, frame_type, iseq: nil, local_size: 0, stack_max: 0) - # CHECK_VM_STACK_OVERFLOW0: next_cfp <= sp + (local_size + stack_max) + # CHECK_VM_STACK_OVERFLOW0: next_cfp <= sp + (local_size + stack_max) asm.comment('stack overflow check') asm.lea(:rax, ctx.sp_opnd(C.rb_control_frame_t.size + C.VALUE.size * (local_size + stack_max))) asm.cmp(CFP, :rax)