| Index: src/compiler/simplified-operator.h
|
| diff --git a/src/compiler/simplified-operator.h b/src/compiler/simplified-operator.h
|
| index 92e8a7202a264be7aa19bb7ce4f61ea44a8ab138..b05cb205945a38e622b0371843f0bd0f1c3c1de2 100644
|
| --- a/src/compiler/simplified-operator.h
|
| +++ b/src/compiler/simplified-operator.h
|
| @@ -38,18 +38,13 @@ std::ostream& operator<<(std::ostream&, BaseTaggedness);
|
| struct FieldAccess {
|
| BaseTaggedness base_is_tagged; // specifies if the base pointer is tagged.
|
| int offset; // offset of the field, without tag.
|
| - MaybeHandle<Name> name; // debugging only.
|
| + Handle<Name> name; // debugging only.
|
| Type* type; // type of the field.
|
| MachineType machine_type; // machine type of the field.
|
|
|
| int tag() const { return base_is_tagged == kTaggedBase ? kHeapObjectTag : 0; }
|
| };
|
|
|
| -bool operator==(FieldAccess const& lhs, FieldAccess const& rhs);
|
| -bool operator!=(FieldAccess const& lhs, FieldAccess const& rhs);
|
| -
|
| -std::ostream& operator<<(std::ostream&, FieldAccess const&);
|
| -
|
|
|
| enum BoundsCheckMode { kNoBoundsCheck, kTypedArrayBoundsCheck };
|
|
|
|
|