Commit c585d9de by Enkelmann Committed by Enkelmann

fix debug print error

parent 4beae232
......@@ -326,7 +326,7 @@ impl std::convert::TryFrom<&BitvectorDomain> for Bitvector {
impl std::fmt::Display for BitvectorDomain {
fn fmt(&self, formatter: &mut std::fmt::Formatter) -> std::fmt::Result {
match self {
Self::Top(bitsize) => write!(formatter, "Top:i{}", bitsize),
Self::Top(bytesize) => write!(formatter, "Top:i{}", BitSize::from(*bytesize)),
Self::Value(bitvector) => write!(
formatter,
"0x{:016x}:i{:?}",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment