Index: src/code-stubs.h |
diff --git a/src/code-stubs.h b/src/code-stubs.h |
index 05a5a166776b6dcb23df252b48d3d9e5b590d035..7ab0b7c5c9cc32b4ffad3c8bee591055c6ce3538 100644 |
--- a/src/code-stubs.h |
+++ b/src/code-stubs.h |
@@ -745,8 +745,9 @@ class CallFunctionStub: public CodeStub { |
} |
InLoopFlag InLoop() { return in_loop_; } |
- bool ReceiverMightBeValue() { |
- return (flags_ & RECEIVER_MIGHT_BE_VALUE) != 0; |
+ |
+ bool ReceiverMightBeImplicit() { |
+ return (flags_ & RECEIVER_MIGHT_BE_IMPLICIT) != 0; |
} |
}; |