Index: src/crankshaft/s390/lithium-codegen-s390.cc |
diff --git a/src/crankshaft/s390/lithium-codegen-s390.cc b/src/crankshaft/s390/lithium-codegen-s390.cc |
index 138eb412aafea99da9a3384a73fd39cd518718c7..366c8b80bd990b4ec35fb59cb80a01e06d9700d7 100644 |
--- a/src/crankshaft/s390/lithium-codegen-s390.cc |
+++ b/src/crankshaft/s390/lithium-codegen-s390.cc |
@@ -2482,11 +2482,12 @@ void LCodeGen::EmitClassOfTest(Label* is_true, Label* is_false, |
__ JumpIfSmi(input, is_false); |
- __ CompareObjectType(input, temp, temp2, JS_FUNCTION_TYPE); |
+ __ CompareObjectType(input, temp, temp2, FIRST_FUNCTION_TYPE); |
+ STATIC_ASSERT(LAST_FUNCTION_TYPE == LAST_TYPE); |
if (String::Equals(isolate()->factory()->Function_string(), class_name)) { |
- __ beq(is_true); |
+ __ bge(is_true); |
} else { |
- __ beq(is_false); |
+ __ bge(is_false); |
} |
// Check if the constructor in the map is a function. |