diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-06-15 23:54:59 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-06-15 23:54:59 -0700 |
commit | 427ea89235681a18725fc12d753aae829d601289 (patch) | |
tree | 3670dd56efd9f638cb84cb7a602f968538f37826 /apps | |
parent | f1dffb4130393a5c03eb02fc09e31a1fc0468e38 (diff) | |
download | mu-427ea89235681a18725fc12d753aae829d601289.tar.gz |
6546
Diffstat (limited to 'apps')
-rw-r--r-- | apps/arith.mu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/arith.mu b/apps/arith.mu index 0ed1714c..c98684d6 100644 --- a/apps/arith.mu +++ b/apps/arith.mu @@ -208,7 +208,7 @@ fn operator _look: byte -> op/ecx: byte, look/esi: byte { } fn num _look: byte -> result/eax: int, look/esi: byte { - look <- copy _look # should be a no-op; guaranteed to be a digit + look <- copy _look # should be a no-op var out/edi: int <- copy 0 { var first-digit/eax: int <- to-decimal-digit look |