commit fa3f7b53fa27a37b2eb142d046bba3df70b695ba
parent 30f47d6ec1e45d1ee551e96e30893dadea3a9008
Author: Quentin Carbonneaux <quentin.carbonneaux@yale.edu>
Date: Tue, 20 Oct 2015 18:02:29 -0400
make the echo test return 0
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lisc/test/echo.ssa b/lisc/test/echo.ssa
@@ -1,4 +1,4 @@
-function $main(w %argc, l %argv) {
+function w $main(w %argc, l %argv) {
@start
%fmt =l alloc8 8
storel 1663398693, %fmt # "%s%c"
@@ -24,5 +24,5 @@ function $main(w %argc, l %argv) {
%ac1 =w sub %ac, 1
jmp @loop
@end
- ret
+ ret 0
}