Add x86_64 Int lt support for gen_dev

Close #2033
This commit is contained in:
satotake 2021-11-20 06:17:22 +00:00 committed by GitHub
parent b7ee16afc8
commit 3a890f46d3
5 changed files with 93 additions and 0 deletions

View file

@ -726,6 +726,20 @@ fn gen_int_neq() {
);
}
#[test]
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm", feature = "gen-dev"))]
fn gen_int_less_than() {
assert_evals_to!(
indoc!(
r#"
4 < 5
"#
),
true,
bool
);
}
#[test]
#[cfg(any(feature = "gen-llvm"))]
fn gen_dec_eq() {