cranelift: Rename Interpreter overflow method

This commit is contained in:
Afonso Bordado
2021-07-08 10:02:59 +01:00
committed by Andrew Brown
parent e628fb376f
commit 037bd41c67
2 changed files with 4 additions and 4 deletions

View File

@@ -720,8 +720,8 @@ where
&left.clone().convert(ValueConversionKind::ToUnsigned)?,
&right.clone().convert(ValueConversionKind::ToUnsigned)?,
)?,
IntCC::Overflow => Value::of(left, right)?,
IntCC::NotOverflow => !Value::of(left, right)?,
IntCC::Overflow => Value::overflow(left, right)?,
IntCC::NotOverflow => !Value::overflow(left, right)?,
})
}