Binary operations from stack

This commit is contained in:
David Gonzalez Martin 2025-02-21 17:52:58 -06:00
parent 71f70a35fb
commit f89fb293c0
3 changed files with 20 additions and 0 deletions

View File

@ -130,3 +130,11 @@ test "constant_xor" {
test "minimal_stack" {
try invsrc(@src());
}
test "stack_add" {
try invsrc(@src());
}
test "stack_sub" {
try invsrc(@src());
}

6
tests/stack_add.bbb Normal file
View File

@ -0,0 +1,6 @@
[export] main = fn [cc(c)] () s32
{
>a: s32 = -1;
>b: s32 = 1;
return a + b;
}

6
tests/stack_sub.bbb Normal file
View File

@ -0,0 +1,6 @@
[export] main = fn [cc(c)] () s32
{
>a: s32 = 1;
>b: s32 = 1;
return a - b;
}