diff options
Diffstat (limited to 'runtime/arch/mips/memcmp16_mips.S')
| -rw-r--r-- | runtime/arch/mips/memcmp16_mips.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/arch/mips/memcmp16_mips.S b/runtime/arch/mips/memcmp16_mips.S index aef81afeca..c8eac9bd1c 100644 --- a/runtime/arch/mips/memcmp16_mips.S +++ b/runtime/arch/mips/memcmp16_mips.S @@ -26,7 +26,7 @@ ENTRY_NO_GP __memcmp16 beqz $a2,done /* 0 length string */ beq $a0,$a1,done /* strings are identical */ - /* Unoptimised... */ + /* Unoptimized... */ 1: lhu $t0,0($a0) lhu $t1,0($a1) addu $a1,2 |