More support for negative numbers

This commit is contained in:
2025-11-22 23:02:49 -07:00
parent 6e7e5ba9f1
commit c3adcf57f5
2 changed files with 51 additions and 2 deletions

View File

@@ -192,7 +192,7 @@ fn with_return_statement() -> anyhow::Result<()> {
doSomething:
pop r8 #arg1
push ra
move r15 456
move r15 456 #returnValue
sub r0 sp 1
get ra db r0
sub sp sp 1
@@ -207,3 +207,37 @@ fn with_return_statement() -> anyhow::Result<()> {
Ok(())
}
#[test]
fn with_negative_return_literal() -> anyhow::Result<()> {
let compiled = compile! {
debug
"
fn doSomething() {
return -1;
};
let i = doSomething();
"
};
assert_eq!(
compiled,
indoc! {
"
j main
doSomething:
push ra
move r15 -1 #returnValue
sub r0 sp 1
get ra db r0
sub sp sp 1
j ra
main:
jal doSomething
move r8 r15 #i
"
}
);
Ok(())
}