| Index: src/arm/lithium-arm.h
|
| diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h
|
| index 41639e7ece43bea83a193825240706762aebd864..1ca2562d3913a0d5e592b104cb43fbf9500444ec 100644
|
| --- a/src/arm/lithium-arm.h
|
| +++ b/src/arm/lithium-arm.h
|
| @@ -2166,8 +2166,10 @@ class LCheckPrototypeMaps: public LTemplateInstruction<1, 0, 2> {
|
| DECLARE_CONCRETE_INSTRUCTION(CheckPrototypeMaps, "check-prototype-maps")
|
| DECLARE_HYDROGEN_ACCESSOR(CheckPrototypeMaps)
|
|
|
| - Handle<JSObject> prototype() const { return hydrogen()->prototype(); }
|
| - Handle<JSObject> holder() const { return hydrogen()->holder(); }
|
| + ZoneList<Handle<JSObject> >* prototypes() const {
|
| + return hydrogen()->prototypes();
|
| + }
|
| + ZoneList<Handle<Map> >* maps() const { return hydrogen()->maps(); }
|
| };
|
|
|
|
|
|
|