Chromium Code Reviews| Index: src/v8globals.h |
| diff --git a/src/v8globals.h b/src/v8globals.h |
| index da290b243fe6474a1ab6670c2520048749e0c5de..a9980e5b3c46d543c3c8d4cc9d60223b203a6f23 100644 |
| --- a/src/v8globals.h |
| +++ b/src/v8globals.h |
| @@ -293,10 +293,8 @@ enum CallFunctionFlags { |
| // Receiver might implicitly be the global objects. If it is, the |
| // hole is passed to the call function stub. |
| RECEIVER_MIGHT_BE_IMPLICIT = 1 << 0, |
|
dcarney
2014/01/13 18:35:03
can this be removed?
also, can CALL_AS_METHOD be
|
| - // Receiver is implicit and the hole has been passed to the stub. |
| - RECEIVER_IS_IMPLICIT = 1 << 1, |
| // The call target is cached in the instruction stream. |
| - RECORD_CALL_TARGET = 1 << 2 |
| + RECORD_CALL_TARGET = 1 << 1 |
| }; |