INT NEQ for i1 and i8 integer types

This commit is contained in:
Chad Stearns 2020-05-01 17:29:43 -04:00
parent 4b5f7bfded
commit d1b00633be
3 changed files with 28 additions and 0 deletions

View file

@ -552,6 +552,8 @@ fn from_can<'a>(
) {
Ok(Layout::Builtin(builtin)) => match builtin {
Builtin::Int64 => Symbol::INT_NEQ_I64,
Builtin::Bool => Symbol::INT_NEQ_I1,
Builtin::Byte => Symbol::INT_NEQ_I8,
_ => {
panic!("Not-Equality not implemented for {:?}", builtin)
}