Commit cf71b068 authored by akos.palfi's avatar akos.palfi Committed by Commit bot

MIPS: Fix '[regexp] implement case-insensitive unicode regexps.'

TEST=mjsunit/harmony/unicode-regexp-ignore-case
BUG=

Review URL: https://codereview.chromium.org/1639263002

Cr-Commit-Position: refs/heads/master@{#33553}
parent 004ce08d
...@@ -326,7 +326,7 @@ void RegExpMacroAssemblerMIPS::CheckNotBackReferenceIgnoreCase( ...@@ -326,7 +326,7 @@ void RegExpMacroAssemblerMIPS::CheckNotBackReferenceIgnoreCase(
// Isolate. // Isolate.
#ifdef V8_I18N_SUPPORT #ifdef V8_I18N_SUPPORT
if (unicode) { if (unicode) {
__ li(a3, Operand(zero_reg)); __ mov(a3, zero_reg);
} else // NOLINT } else // NOLINT
#endif // V8_I18N_SUPPORT #endif // V8_I18N_SUPPORT
{ {
......
...@@ -362,7 +362,7 @@ void RegExpMacroAssemblerMIPS::CheckNotBackReferenceIgnoreCase( ...@@ -362,7 +362,7 @@ void RegExpMacroAssemblerMIPS::CheckNotBackReferenceIgnoreCase(
// Isolate. // Isolate.
#ifdef V8_I18N_SUPPORT #ifdef V8_I18N_SUPPORT
if (unicode) { if (unicode) {
__ li(a3, Operand(zero_reg)); __ mov(a3, zero_reg);
} else // NOLINT } else // NOLINT
#endif // V8_I18N_SUPPORT #endif // V8_I18N_SUPPORT
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment