Index: src/ast.cc |
diff --git a/src/ast.cc b/src/ast.cc |
index 1db5ffe3097c8d96bb2d54134175c334e92d3593..5817615e8424113e7ef98e68ebeb9d07a0dfbb9f 100644 |
--- a/src/ast.cc |
+++ b/src/ast.cc |
@@ -596,7 +596,7 @@ void Expression::RecordToBooleanTypeFeedback(TypeFeedbackOracle* oracle) { |
bool Call::IsUsingCallFeedbackSlot(Isolate* isolate) const { |
CallType call_type = GetCallType(isolate); |
- return call_type == LOOKUP_SLOT_CALL || call_type == OTHER_CALL; |
+ return (call_type != POSSIBLY_EVAL_CALL); |
} |