| Index: src/mips/regexp-macro-assembler-mips.cc
|
| ===================================================================
|
| --- src/mips/regexp-macro-assembler-mips.cc (revision 8618)
|
| +++ src/mips/regexp-macro-assembler-mips.cc (working copy)
|
| @@ -179,7 +179,7 @@
|
| // Pop Code* offset from backtrack stack, add Code* and jump to location.
|
| Pop(a0);
|
| __ Addu(a0, a0, code_pointer());
|
| - __ Jump(Operand(a0));
|
| + __ Jump(a0);
|
| }
|
|
|
|
|
| @@ -1238,7 +1238,7 @@
|
| __ Call(t9);
|
| __ lw(ra, MemOperand(sp, 0));
|
| __ Addu(sp, sp, Operand(stack_alignment));
|
| - __ Jump(Operand(ra));
|
| + __ Jump(ra);
|
| }
|
|
|
|
|
|
|