| Index: src/hydrogen-instructions.h
|
| diff --git a/src/hydrogen-instructions.h b/src/hydrogen-instructions.h
|
| index 4dd24fd871552456a10bb77ab8f6a0e4b4b25138..db9a846b4a9e5a30106a07b790e39ab98ad7aa03 100644
|
| --- a/src/hydrogen-instructions.h
|
| +++ b/src/hydrogen-instructions.h
|
| @@ -2399,7 +2399,8 @@ class HCallNamed V8_FINAL : public HUnaryCall {
|
|
|
| enum CallMode {
|
| NORMAL_CALL,
|
| - TAIL_CALL
|
| + TAIL_CALL,
|
| + NORMAL_CONTEXTUAL_CALL
|
| };
|
|
|
|
|
| @@ -2410,7 +2411,7 @@ class HCallFunction V8_FINAL : public HBinaryCall {
|
| HCallFunction, HValue*, int, CallMode);
|
|
|
| bool IsTailCall() const { return call_mode_ == TAIL_CALL; }
|
| -
|
| + bool IsContextualCall() const { return call_mode_ == NORMAL_CONTEXTUAL_CALL; }
|
| HValue* context() { return first(); }
|
| HValue* function() { return second(); }
|
|
|
|
|