about summary refs log tree commit diff stats
path: root/054string-equal.subx
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-10-15 19:35:19 -0700
committerKartik Agaram <vc@akkartik.com>2019-10-15 19:35:19 -0700
commit7a5832204a80ff43d23c3a384c26e2217ef5908b (patch)
tree5d3dce95369bf30b84735afd6e21bf1a43db16b7 /054string-equal.subx
parent6a51218e12ce75e51301b834e1c48e86aefedc1e (diff)
downloadmu-7a5832204a80ff43d23c3a384c26e2217ef5908b.tar.gz
5698
Thanks Andrew Owen for reporting this typo.
Diffstat (limited to '054string-equal.subx')
-rw-r--r--054string-equal.subx8
1 files changed, 4 insertions, 4 deletions
diff --git a/054string-equal.subx b/054string-equal.subx
index 073e7dbb..2dfad4b5 100644
--- a/054string-equal.subx
+++ b/054string-equal.subx
@@ -33,7 +33,7 @@ string-equal?:  # s : (address string), benchmark : (address string) -> eax : bo
     #   c1: eax
     #   c2: ebx
     #
-    # . prolog
+    # . prologue
     55/push-ebp
     89/copy                         3/mod/direct    5/rm32/ebp    .           .             .           4/r32/esp   .               .                 # copy esp to ebp
     # . save registers
@@ -87,7 +87,7 @@ $string-equal?:end:
     5e/pop-to-esi
     5a/pop-to-edx
     59/pop-to-ecx
-    # . epilog
+    # . epilogue
     89/copy                         3/mod/direct    4/rm32/esp    .           .             .           5/r32/ebp   .               .                 # copy ebp to esp
     5d/pop-to-ebp
     c3/return
@@ -176,7 +176,7 @@ test-compare-inequal-strings-equal-lengths:
 
 # helper for later tests
 check-string-equal:  # s : (address string), expected : (address string), msg : (address string)
-    # . prolog
+    # . prologue
     55/push-ebp
     89/copy                         3/mod/direct    5/rm32/ebp    .           .             .           4/r32/esp   .               .                 # copy esp to ebp
     # . save registers
@@ -201,7 +201,7 @@ check-string-equal:  # s : (address string), expected : (address string), msg :
 $check-string-equal:end:
     # . restore registers
     58/pop-to-eax
-    # . epilog
+    # . epilogue
     89/copy                         3/mod/direct    4/rm32/esp    .           .             .           5/r32/ebp   .               .                 # copy ebp to esp
     5d/pop-to-ebp
     c3/return