Update fmt and use of memcpy
I'm still not totally sure if this is the right way to implement the memcpy, but that portion compiles correctly now. Now to fix the compile errors everywhere else :).
This commit is contained in:
parent
0fdc07e197
commit
72c734d001
2 changed files with 15 additions and 10 deletions
|
@ -1668,7 +1668,7 @@ impl Debug for Statement<'_> {
|
|||
ref src,
|
||||
ref dst,
|
||||
ref size,
|
||||
}) => write!(fmt, "src {:?} -> dst {:?}, {:?} bytes", src, dst, size),
|
||||
}) => write!(fmt, "copy_nonoverlapping(src={:?}, dst={:?},bytes={:?})", src, dst, size),
|
||||
Nop => write!(fmt, "nop"),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue