Skip to content

Commit 4b605e4

Browse files
committed
Use longer names for MIR variable names.
1 parent e69713d commit 4b605e4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/librustc/mir/repr.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -546,11 +546,11 @@ impl<'tcx> Debug for Lvalue<'tcx> {
546546

547547
match *self {
548548
Var(id) =>
549-
write!(fmt,"v{:?}", id),
549+
write!(fmt,"var{:?}", id),
550550
Arg(id) =>
551-
write!(fmt,"a{:?}", id),
551+
write!(fmt,"arg{:?}", id),
552552
Temp(id) =>
553-
write!(fmt,"t{:?}", id),
553+
write!(fmt,"tmp{:?}", id),
554554
Static(id) =>
555555
write!(fmt,"Static({:?})", id),
556556
ReturnPointer =>

0 commit comments

Comments
 (0)