s/place_debug/place_pretty in SMIR

This commit is contained in:
Celina G. Val 2024-03-20 18:02:11 -07:00
parent 5f6257429d
commit ebacf7acd3
3 changed files with 3 additions and 3 deletions

View file

@ -660,7 +660,7 @@ fn layout_shape(&self, id: Layout) -> LayoutShape {
id.internal(&mut *tables, tcx).0.stable(&mut *tables)
}
fn place_debug(&self, place: &Place) -> String {
fn place_pretty(&self, place: &Place) -> String {
let mut tables = self.0.borrow_mut();
let tcx = tables.tcx;
format!("{:?}", place.internal(&mut *tables, tcx))

View file

@ -210,7 +210,7 @@ fn resolve_closure(
fn layout_shape(&self, id: Layout) -> LayoutShape;
/// Get a debug string representation of a place.
fn place_debug(&self, place: &Place) -> String;
fn place_pretty(&self, place: &Place) -> String;
}
// A thread local variable that stores a pointer to the tables mapping between TyCtxt

View file

@ -18,7 +18,7 @@ fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
impl Debug for Place {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
with(|ctx| write!(f, "{}", ctx.place_debug(self)))
with(|ctx| write!(f, "{}", ctx.place_pretty(self)))
}
}