| Index: src/objects-inl.h
|
| diff --git a/src/objects-inl.h b/src/objects-inl.h
|
| index f03021e41c07c1cfb3b926b4b2b5d841f7bd5382..4f65e15a8307257e5e13c2ecb95a9ea43276bd1b 100644
|
| --- a/src/objects-inl.h
|
| +++ b/src/objects-inl.h
|
| @@ -2846,19 +2846,6 @@ void Code::set_check_type(CheckType value) {
|
| }
|
|
|
|
|
| -ExternalArrayType Code::external_array_type() {
|
| - ASSERT(is_keyed_load_stub() || is_keyed_store_stub());
|
| - byte type = READ_BYTE_FIELD(this, kExternalArrayTypeOffset);
|
| - return static_cast<ExternalArrayType>(type);
|
| -}
|
| -
|
| -
|
| -void Code::set_external_array_type(ExternalArrayType value) {
|
| - ASSERT(is_keyed_load_stub() || is_keyed_store_stub());
|
| - WRITE_BYTE_FIELD(this, kExternalArrayTypeOffset, value);
|
| -}
|
| -
|
| -
|
| byte Code::unary_op_type() {
|
| ASSERT(is_unary_op_stub());
|
| return READ_BYTE_FIELD(this, kUnaryOpTypeOffset);
|
|
|