about summary refs log tree commit diff stats
path: root/subx/054string_equal.subx
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-10-03 20:47:07 -0700
committerKartik Agaram <vc@akkartik.com>2018-10-03 20:47:07 -0700
commit52387f21076326c8a1ac65e6d784b35c3759d23d (patch)
tree787962bdf56c0ec3a82e07e7d1e1cd6fe3332335 /subx/054string_equal.subx
parentd11372f6d02d30e2c47dd843be5394064f9e589f (diff)
downloadmu-52387f21076326c8a1ac65e6d784b35c3759d23d.tar.gz
4659
Diffstat (limited to 'subx/054string_equal.subx')
-rw-r--r--subx/054string_equal.subx6
1 files changed, 3 insertions, 3 deletions
diff --git a/subx/054string_equal.subx b/subx/054string_equal.subx
index ade18a07..78ceb631 100644
--- a/subx/054string_equal.subx
+++ b/subx/054string_equal.subx
@@ -113,7 +113,7 @@ test_compare_empty_with_non_empty_string:  # also checks length-mismatch code pa
   68/push  "Abc"/imm32
   68/push  ""/imm32
     # call
-  e8/call  kernel_string_equal/disp32
+  e8/call  string_equal/disp32
     # discard args
   81          0/subop/add         3/mod/direct    4/rm32/ESP    .           .             .           .           .               8/imm32           # add to ESP
   # call check_ints_equal(EAX, 0, msg)
@@ -128,7 +128,7 @@ test_compare_empty_with_non_empty_string:  # also checks length-mismatch code pa
   c3/return
 
 test_compare_equal_strings:
-  # EAX = kernel_string_equal("Abc", "Abc")
+  # EAX = string_equal("Abc", "Abc")
     # push args
   68/push  "Abc"/imm32
   68/push  "Abc"/imm32
@@ -148,7 +148,7 @@ test_compare_equal_strings:
   c3/return
 
 test_compare_inequal_strings_equal_lengths:
-  # EAX = kernel_string_equal("Abc", "Adc")
+  # EAX = string_equal("Abc", "Adc")
     # push args
   68/push  "Adc"/imm32
   68/push  "Abc"/imm32