re-add spaces before static kind
This commit is contained in:
parent
aaba692eff
commit
fbfd2d4bca
1 changed files with 2 additions and 2 deletions
|
|
@ -528,8 +528,8 @@ impl<'a, 'tcx> Memory<'a, 'tcx> {
|
|||
}
|
||||
|
||||
let immutable = match alloc.static_kind {
|
||||
StaticKind::Mutable => "(static mut)",
|
||||
StaticKind::Immutable => "(immutable)",
|
||||
StaticKind::Mutable => " (static mut)",
|
||||
StaticKind::Immutable => " (immutable)",
|
||||
StaticKind::NotStatic => "",
|
||||
};
|
||||
trace!("{}({} bytes){}", msg, alloc.bytes.len(), immutable);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue