Skip to content

Commit 3c99702

Browse files
committed
Fix more comma spacing
1 parent a1a67a8 commit 3c99702

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

zjit/src/hir.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7051,9 +7051,9 @@ pub fn iseq_to_hir(iseq: *const rb_iseq_t) -> Result<Function, ParseError> {
70517051
}
70527052
let ty = Type::from_profiled_type(summary.bucket(0));
70537053
let obj = if ty.is_subtype(types::NilClass) {
7054-
fun.push_insn(block, Insn::GuardType { val: hash, guard_type: types::NilClass, state: exit_id , recompile: None})
7054+
fun.push_insn(block, Insn::GuardType { val: hash, guard_type: types::NilClass, state: exit_id, recompile: None})
70557055
} else if ty.is_subtype(types::HashExact) {
7056-
fun.push_insn(block, Insn::GuardType { val: hash, guard_type: types::HashExact, state: exit_id , recompile: None})
7056+
fun.push_insn(block, Insn::GuardType { val: hash, guard_type: types::HashExact, state: exit_id, recompile: None})
70577057
} else {
70587058
fun.push_insn(block, Insn::SideExit { state: exit_id, reason: SideExitReason::SplatKwNotNilOrHash, recompile: None });
70597059
break; // End the block

0 commit comments

Comments
 (0)