| Index: src/full-codegen/mips64/full-codegen-mips64.cc
|
| diff --git a/src/full-codegen/mips64/full-codegen-mips64.cc b/src/full-codegen/mips64/full-codegen-mips64.cc
|
| index 4e16ca23c58528971f25691fa4278b027d497c64..15f4d7fa6296867e3ba3dfcc1024370b6d1908d9 100644
|
| --- a/src/full-codegen/mips64/full-codegen-mips64.cc
|
| +++ b/src/full-codegen/mips64/full-codegen-mips64.cc
|
| @@ -3152,7 +3152,7 @@ void FullCodeGenerator::EmitIsFunction(CallRuntime* expr) {
|
| __ JumpIfSmi(v0, if_false);
|
| __ GetObjectType(v0, a1, a2);
|
| PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
|
| - __ Branch(if_true, eq, a2, Operand(JS_FUNCTION_TYPE));
|
| + __ Branch(if_true, hs, a2, Operand(FIRST_FUNCTION_TYPE));
|
| __ Branch(if_false);
|
|
|
| context()->Plug(if_true, if_false);
|
|
|