| Index: src/mips/lithium-codegen-mips.cc
|
| diff --git a/src/mips/lithium-codegen-mips.cc b/src/mips/lithium-codegen-mips.cc
|
| index 02a89b75cc564c118fa057dacceb5f0b08ee3fd9..fd23d96f8c0c8996cf991a384d1060131590edce 100644
|
| --- a/src/mips/lithium-codegen-mips.cc
|
| +++ b/src/mips/lithium-codegen-mips.cc
|
| @@ -635,13 +635,9 @@ void LCodeGen::DeoptimizeIf(Condition cc,
|
| __ bind(&skip);
|
| }
|
|
|
| - if (cc == al) {
|
| - __ Jump(entry, RelocInfo::RUNTIME_ENTRY);
|
| - } else {
|
| - // TODO(plind): The Arm port is a little different here, due to their
|
| - // DeOpt jump table, which is not used for Mips yet.
|
| - __ Jump(entry, RelocInfo::RUNTIME_ENTRY, cc, src1, src2);
|
| - }
|
| + // TODO(plind): The Arm port is a little different here, due to their
|
| + // DeOpt jump table, which is not used for Mips yet.
|
| + __ Jump(entry, RelocInfo::RUNTIME_ENTRY, cc, src1, src2);
|
| }
|
|
|
|
|
|
|