Implemented INT_NE_i64

This commit is contained in:
Chad Stearns 2020-05-01 16:31:19 -04:00
parent 8befd12355
commit 71258e0e59
6 changed files with 72 additions and 1 deletions

View file

@ -342,12 +342,18 @@ pub fn types() -> MutMap<Symbol, (SolvedType, Region)> {
// Int module
// equals : Int, Int -> Bool
// equals or (==) : Int, Int -> Bool
add_type(
Symbol::INT_EQ_I64,
unique_function(vec![int_type(UVAR1), int_type(UVAR2)], bool_type(UVAR3)),
);
// not equals or (!=) : Int, Int -> Bool
add_type(
Symbol::INT_NEQ_I64,
unique_function(vec![int_type(UVAR1), int_type(UVAR2)], bool_type(UVAR3)),
);
// highest : Int
add_type(Symbol::INT_HIGHEST, int_type(UVAR1));