Index: src/code-stubs.h |
diff --git a/src/code-stubs.h b/src/code-stubs.h |
index a63915b4667b5eacc1bd4d842fa4770790c30219..21f1d03c8cf7b3a5e4d0cdce660781d08f230547 100644 |
--- a/src/code-stubs.h |
+++ b/src/code-stubs.h |
@@ -1403,13 +1403,11 @@ |
class CallApiAccessorStub : public PlatformCodeStub { |
public: |
- CallApiAccessorStub(Isolate* isolate, bool is_store, bool call_data_undefined, |
- bool is_lazy) |
+ CallApiAccessorStub(Isolate* isolate, bool is_store, bool call_data_undefined) |
: PlatformCodeStub(isolate) { |
minor_key_ = IsStoreBits::encode(is_store) | |
CallDataUndefinedBits::encode(call_data_undefined) | |
- ArgumentBits::encode(is_store ? 1 : 0) | |
- IsLazyAccessorBits::encode(is_lazy); |
+ ArgumentBits::encode(is_store ? 1 : 0); |
} |
protected: |
@@ -1424,7 +1422,6 @@ |
private: |
bool is_store() const { return IsStoreBits::decode(minor_key_); } |
- bool is_lazy() const { return IsLazyAccessorBits::decode(minor_key_); } |
bool call_data_undefined() const { |
return CallDataUndefinedBits::decode(minor_key_); |
} |
@@ -1433,7 +1430,6 @@ |
class IsStoreBits: public BitField<bool, 0, 1> {}; |
class CallDataUndefinedBits: public BitField<bool, 1, 1> {}; |
class ArgumentBits : public BitField<int, 2, kArgBits> {}; |
- class IsLazyAccessorBits : public BitField<bool, 3 + kArgBits, 1> {}; |
DEFINE_CALL_INTERFACE_DESCRIPTOR(ApiAccessor); |
DEFINE_PLATFORM_CODE_STUB(CallApiAccessor, PlatformCodeStub); |