fix merge conflict

This commit is contained in:
Folkert 2021-11-21 20:34:16 +01:00
parent 64869ffb8b
commit f90f5a4bdd
2 changed files with 5 additions and 5 deletions

View file

@ -412,7 +412,7 @@ where
debug_assert_eq!(
Layout::Builtin(Builtin::Bool),
*ret_layout,
"Eq: expected to have return layout of type I1"
"Eq: expected to have return layout of type Bool"
);
self.build_eq(sym, &args[0], &args[1], &arg_layouts[0])
}
@ -429,7 +429,7 @@ where
debug_assert_eq!(
Layout::Builtin(Builtin::Bool),
*ret_layout,
"NotEq: expected to have return layout of type I1"
"NotEq: expected to have return layout of type Bool"
);
self.build_neq(sym, &args[0], &args[1], &arg_layouts[0])
}
@ -444,9 +444,9 @@ where
"NumLt: expected all arguments of to have the same layout"
);
debug_assert_eq!(
Layout::Builtin(Builtin::Int1),
Layout::Builtin(Builtin::Bool),
*ret_layout,
"NumLt: expected to have return layout of type I1"
"NumLt: expected to have return layout of type Bool"
);
self.build_num_lt(sym, &args[0], &args[1], &arg_layouts[0])
}