| Index: src/full-codegen/ppc/full-codegen-ppc.cc
|
| diff --git a/src/full-codegen/ppc/full-codegen-ppc.cc b/src/full-codegen/ppc/full-codegen-ppc.cc
|
| index b0855053ac319f0738a9969f6d1a34bdc12fa07f..301ccf53cc3000e39aa0d915237119ab13036eb7 100644
|
| --- a/src/full-codegen/ppc/full-codegen-ppc.cc
|
| +++ b/src/full-codegen/ppc/full-codegen-ppc.cc
|
| @@ -3001,9 +3001,10 @@ void FullCodeGenerator::EmitClassOf(CallRuntime* expr) {
|
| // Map is now in r3.
|
| __ blt(&null);
|
|
|
| - // Return 'Function' for JSFunction objects.
|
| - __ cmpi(r4, Operand(JS_FUNCTION_TYPE));
|
| - __ beq(&function);
|
| + // Return 'Function' for JSFunction and JSBoundFunction objects.
|
| + __ cmpli(r4, Operand(FIRST_FUNCTION_TYPE));
|
| + STATIC_ASSERT(LAST_FUNCTION_TYPE == LAST_TYPE);
|
| + __ bge(&function);
|
|
|
| // Check if the constructor in the map is a JS function.
|
| Register instance_type = r5;
|
|
|