This commit is contained in:
2026-06-11 10:59:54 -06:00
commit 8650a71f67
159 changed files with 78653 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
# loads must not be unsafely hoisted
export
function w $f(w %n, l %p) {
@start
%r =w copy 0
@loop
%n =w sub %n, 1
%c =w csgew %n, 0
jnz %c, @loop1, @end
@loop1
%r =w loadw %p
jmp @loop
@end
ret %r
}
# >>> driver
# extern int f(int, int *);
# int main() { return f(0, 0); }
# <<<