| Index: src/mips/lithium-mips.cc
|
| diff --git a/src/mips/lithium-mips.cc b/src/mips/lithium-mips.cc
|
| index 0a14c3ed484ffa89b1b9e46eee5c29e95c75f73c..1615d4ae66b25a43b1a9a1c99b1c6de82024faa2 100644
|
| --- a/src/mips/lithium-mips.cc
|
| +++ b/src/mips/lithium-mips.cc
|
| @@ -2205,12 +2205,8 @@ LInstruction* LChunkBuilder::DoStoreNamedGeneric(HStoreNamedGeneric* instr) {
|
|
|
| LInstruction* LChunkBuilder::DoStringAdd(HStringAdd* instr) {
|
| LOperand* context = UseFixed(instr->context(), cp);
|
| - LOperand* left = FLAG_new_string_add
|
| - ? UseFixed(instr->left(), a1)
|
| - : UseRegisterAtStart(instr->left());
|
| - LOperand* right = FLAG_new_string_add
|
| - ? UseFixed(instr->right(), a0)
|
| - : UseRegisterAtStart(instr->right());
|
| + LOperand* left = UseFixed(instr->left(), a1);
|
| + LOperand* right = UseFixed(instr->right(), a0);
|
| return MarkAsCall(
|
| DefineFixed(new(zone()) LStringAdd(context, left, right), v0),
|
| instr);
|
|
|