diff options
author | git <[email protected]> | 2023-03-06 07:24:02 +0000 |
---|---|---|
committer | git <[email protected]> | 2023-03-06 07:24:02 +0000 |
commit | e111d3ae8d3d88e1435e2a28adb1a7ed7277f70a (patch) | |
tree | b79dd34a08783124e24f62719a6d7fd8904203c9 /lib/ruby_vm/mjit/insn_compiler.rb | |
parent | cacf2f3709a570560085e6a95c3a78e8fb8cc0f5 (diff) |
* remove trailing spaces. [ci skip]
Diffstat (limited to 'lib/ruby_vm/mjit/insn_compiler.rb')
-rw-r--r-- | lib/ruby_vm/mjit/insn_compiler.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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) |