diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-05-05 15:18:08 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-05-18 00:44:48 -0700 |
commit | b1d13b806fb5fcac53edccd77407211fd89daaee (patch) | |
tree | 139c22765057a040cc388200c2ccfbd8099608ba | |
parent | 397966f615c1a206e071d0a24120ff0311d3cb5a (diff) | |
download | mu-b1d13b806fb5fcac53edccd77407211fd89daaee.tar.gz |
mu.subx: include missing arg
It's not used in these tests, but still confusing.
-rw-r--r-- | apps/mu.subx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/mu.subx b/apps/mu.subx index 91a3393c..5c4edd8a 100644 --- a/apps/mu.subx +++ b/apps/mu.subx @@ -5753,7 +5753,7 @@ test-parse-mu-stmt: # (push %ecx %edx) # convert - (parse-mu-stmt _test-input-stream %ecx) # => eax + (parse-mu-stmt _test-input-stream %ecx 0) # => eax # check result (check-ints-equal *eax 1 "F - test-parse-mu-stmt/tag") # Stmt-tag is Stmt1 (check-strings-equal *(eax+4) "increment" "F - test-parse-mu-stmt/name") # Stmt1-operation @@ -5789,7 +5789,7 @@ test-parse-mu-stmt-with-comma: # (push %ecx %edx) # convert - (parse-mu-stmt _test-input-stream %ecx) # => eax + (parse-mu-stmt _test-input-stream %ecx 0) # => eax # check result (check-ints-equal *eax 1 "F - test-parse-mu-stmt-with-comma/tag") # Stmt-tag is Stmt1 (check-strings-equal *(eax+4) "copy-to" "F - test-parse-mu-stmt-with-comma/name") # Stmt1-operation |