This commit is contained in:
Kartik Agaram 2018-10-04 23:01:52 -07:00
parent 52387f2107
commit 29c10f7f06
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ string_equal: # s : string, benchmark : string -> EAX : boolean
56/push-ESI
# pseudocode:
# if s.length != b.length return false
# for i = 0; i < s.length; ++i
# for i = 0; i < s.length; ++i
# if s[i] != b[i] return false
# return true
# registers: