about summary refs log tree commit diff stats
path: root/subx
diff options
context:
space:
mode:
Diffstat (limited to '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