| Index: src/regexp/mips64/regexp-macro-assembler-mips64.cc
|
| diff --git a/src/regexp/mips64/regexp-macro-assembler-mips64.cc b/src/regexp/mips64/regexp-macro-assembler-mips64.cc
|
| index 5153bd018b7465574ada3258db584e7923d8fc72..531e7060d01ff6236feee8c58d4dbd67c963618a 100644
|
| --- a/src/regexp/mips64/regexp-macro-assembler-mips64.cc
|
| +++ b/src/regexp/mips64/regexp-macro-assembler-mips64.cc
|
| @@ -841,9 +841,12 @@ Handle<HeapObject> RegExpMacroAssemblerMIPS::GetCode(Handle<String> source) {
|
| __ Branch(&exit_label_, eq, current_input_offset(),
|
| Operand(zero_reg));
|
| // Advance current position after a zero-length match.
|
| + Label advance;
|
| + __ bind(&advance);
|
| __ Daddu(current_input_offset(),
|
| current_input_offset(),
|
| Operand((mode_ == UC16) ? 2 : 1));
|
| + if (global_unicode()) CheckNotInSurrogatePair(0, &advance);
|
| }
|
|
|
| __ Branch(&load_char_start_regexp);
|
|
|