Chromium Code Reviews| Index: src/objects.h |
| diff --git a/src/objects.h b/src/objects.h |
| index eb8a7565233cbae8965c465bb7b54af0856a1e01..62251fb32dbed76a7d3f7e510a41c94be01b5179 100644 |
| --- a/src/objects.h |
| +++ b/src/objects.h |
| @@ -5385,7 +5385,6 @@ class Code: public HeapObject { |
| static inline Flags ComputeHandlerFlags( |
| Kind handler_kind, |
| - ExtraICState extra_ic_state = kNoExtraICState, |
| StubType type = NORMAL, |
|
Igor Sheludko
2014/02/14 15:03:40
Do we really need type and holder parameters for h
|
| InlineCacheHolderFlag holder = OWN_MAP); |
| @@ -5613,8 +5612,6 @@ class Code: public HeapObject { |
| class BackEdgesPatchedForOSRField: public BitField<bool, |
| kIsCrankshaftedBit + 1 + 29, 1> {}; // NOLINT |
| - class HandlerKindField: public BitField<Kind, 17, 4> {}; |
| - |
| static const int kArgumentsBits = 16; |
| static const int kMaxArguments = (1 << kArgumentsBits) - 1; |