bloat-buster/tests/minimal_stack_arithmetic3.bbb
David Gonzalez Martin 1c50a06cce
All checks were successful
CI / ci (ReleaseFast, ubuntu-latest) (push) Successful in 30s
CI / ci (ReleaseSmall, ubuntu-latest) (push) Successful in 29s
CI / ci (ReleaseSafe, ubuntu-latest) (push) Successful in 37s
CI / ci (Debug, ubuntu-latest) (push) Successful in 44s
Minimal stack arithmetic
2025-04-06 09:47:44 +02:00

7 lines
85 B
Plaintext

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