diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-05-09 16:28:18 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-05-18 00:44:49 -0700 |
commit | d53cdc059a8f1c31514b0db2af03d101d882c7db (patch) | |
tree | 6cb9506b2e2c1c652bb3604ecc87ded284dd05a2 /apps | |
parent | f4db2fda33c2a9b369c87e70753d2e19cf35626d (diff) | |
download | mu-d53cdc059a8f1c31514b0db2af03d101d882c7db.tar.gz |
-
Diffstat (limited to 'apps')
-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 59ceea83..65ec4e2d 100644 --- a/apps/mu.subx +++ b/apps/mu.subx @@ -3555,7 +3555,7 @@ test-function-header-with-multiple-args: # setup (clear-stream _test-input-stream) (write _test-input-stream "foo a: int, b: int c: int {\n") - # result/ecx: (handle function) + # result/ecx: function 2b/subtract *Function-size 4/r32/esp 89/<- %ecx 4/r32/esp (zero-out %ecx *Function-size) @@ -3610,7 +3610,7 @@ test-function-with-multiple-args-and-outputs: # setup (clear-stream _test-input-stream) (write _test-input-stream "foo a: int, b: int, c: int -> x/ecx: int y/edx: int {\n") - # result/ecx: (handle function) + # result/ecx: function 2b/subtract *Function-size 4/r32/esp 89/<- %ecx 4/r32/esp (zero-out %ecx *Function-size) |