diff options
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 |