diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-02-17 20:00:15 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-02-17 20:02:02 -0800 |
commit | 156cbcff8ac687e24251d262dfb18b5a9b16db56 (patch) | |
tree | dce5eaee7379347691f840c801f51623b342f44a /apps | |
parent | c52ae116ace032a3eaa53bd297836b675cd8393e (diff) | |
download | mu-156cbcff8ac687e24251d262dfb18b5a9b16db56.tar.gz |
6016
Diffstat (limited to 'apps')
-rw-r--r-- | apps/mu.subx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/mu.subx b/apps/mu.subx index 6690ecd4..98aefa34 100644 --- a/apps/mu.subx +++ b/apps/mu.subx @@ -3894,7 +3894,7 @@ $lookup-or-define-var:end: 5d/pop-to-ebp c3/return -find-in-function-outputs: # fn: (handle function), name: (handle array byte) => result/eax: (handle var) +find-in-function-outputs: # fn: (handle function), name: (handle array byte) -> result/eax: (handle var) # . prologue 55/push-ebp 89/<- %ebp 4/r32/esp @@ -6884,7 +6884,7 @@ $find-matching-primitive:end: 5d/pop-to-ebp c3/return -mu-stmt-matches-function?: # stmt: (handle statement), function: (handle function) => result/eax: boolean +mu-stmt-matches-function?: # stmt: (handle statement), function: (handle function) -> result/eax: boolean # . prologue 55/push-ebp 89/<- %ebp 4/r32/esp @@ -6902,7 +6902,7 @@ $mu-stmt-matches-function?:end: 5d/pop-to-ebp c3/return -mu-stmt-matches-primitive?: # stmt: (handle statement), primitive: (handle primitive) => result/eax: boolean +mu-stmt-matches-primitive?: # stmt: (handle statement), primitive: (handle primitive) -> result/eax: boolean # A mu stmt matches a primitive if the name matches, all the inout vars # match, and all the output vars match. # Vars match if types match and registers match. @@ -7028,7 +7028,7 @@ $mu-stmt-matches-primitive?:end: 5d/pop-to-ebp c3/return -operand-matches-primitive?: # var: (handle var), prim-var: (handle var) => result/eax: boolean +operand-matches-primitive?: # var: (handle var), prim-var: (handle var) -> result/eax: boolean # . prologue 55/push-ebp 89/<- %ebp 4/r32/esp @@ -7077,7 +7077,7 @@ $operand-matches-primitive?:end: 5d/pop-to-ebp c3/return -type-equal?: # a: (handle tree type-id), b: (handle tree type-id) => result/eax: boolean +type-equal?: # a: (handle tree type-id), b: (handle tree type-id) -> result/eax: boolean # . prologue 55/push-ebp 89/<- %ebp 4/r32/esp |