Skip to content

Commit 51b60b7

Browse files
authored
Improve readability
1 parent 1a9fc18 commit 51b60b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/librustc_codegen_ssa/mir/block.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -415,8 +415,8 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
415415
AssertKind::BoundsCheck { ref len, ref index } => {
416416
let len = self.codegen_operand(&mut bx, len).immediate();
417417
let index = self.codegen_operand(&mut bx, index).immediate();
418-
// It's `fn panic_bounds_check(index: usize, len: usize)`, and
419-
// `#[track_caller]` adds an implicit third argument.
418+
// It's `fn panic_bounds_check(index: usize, len: usize)`,
419+
// and `#[track_caller]` adds an implicit third argument.
420420
(lang_items::PanicBoundsCheckFnLangItem, vec![index, len, location])
421421
}
422422
_ => {

0 commit comments

Comments
 (0)