We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67a3a68 commit 4de08b7Copy full SHA for 4de08b7
src/machine.rs
@@ -155,10 +155,10 @@ impl Provenance for Tag {
155
fn fmt(ptr: &Pointer<Self>, f: &mut fmt::Formatter<'_>) -> fmt::Result {
156
let (tag, addr) = ptr.into_parts(); // address is absolute
157
write!(f, "0x{:x}", addr.bytes())?;
158
- // Forward `alternate` flag to `alloc_id` printing.
159
160
match tag {
161
Tag::Concrete(tag) => {
+ // Forward `alternate` flag to `alloc_id` printing.
162
if f.alternate() {
163
write!(f, "[{:#?}]", tag.alloc_id)?;
164
} else {
0 commit comments