Skip to content

Commit 3c43306

Browse files
committed
Fix more comma spacing
1 parent 6266b5a commit 3c43306

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
@@ -7024,9 +7024,9 @@ pub fn iseq_to_hir(iseq: *const rb_iseq_t) -> Result<Function, ParseError> {
70247024
}
70257025
let ty = Type::from_profiled_type(summary.bucket(0));
70267026
let obj = if ty.is_subtype(types::NilClass) {
7027-
fun.push_insn(block, Insn::GuardType { val: hash, guard_type: types::NilClass, state: exit_id , recompile: None})
7027+
fun.push_insn(block, Insn::GuardType { val: hash, guard_type: types::NilClass, state: exit_id, recompile: None})
70287028
} else if ty.is_subtype(types::HashExact) {
7029-
fun.push_insn(block, Insn::GuardType { val: hash, guard_type: types::HashExact, state: exit_id , recompile: None})
7029+
fun.push_insn(block, Insn::GuardType { val: hash, guard_type: types::HashExact, state: exit_id, recompile: None})
70307030
} else {
70317031
fun.push_insn(block, Insn::SideExit { state: exit_id, reason: SideExitReason::SplatKwNotNilOrHash, recompile: None });
70327032
break; // End the block

0 commit comments

Comments
 (0)