| Index: src/arm/lithium-arm.h
|
| ===================================================================
|
| --- src/arm/lithium-arm.h (revision 6336)
|
| +++ src/arm/lithium-arm.h (working copy)
|
| @@ -943,14 +943,18 @@
|
|
|
| class LInstanceOfKnownGlobal: public LUnaryOperation {
|
| public:
|
| - explicit LInstanceOfKnownGlobal(LOperand* left)
|
| - : LUnaryOperation(left) { }
|
| + explicit LInstanceOfKnownGlobal(LOperand* left, LOperand* temp)
|
| + : LUnaryOperation(left), temp_(temp) { }
|
|
|
| DECLARE_CONCRETE_INSTRUCTION(InstanceOfKnownGlobal,
|
| "instance-of-known-global")
|
| DECLARE_HYDROGEN_ACCESSOR(InstanceOfKnownGlobal)
|
|
|
| Handle<JSFunction> function() const { return hydrogen()->function(); }
|
| + LOperand* temp() const { return temp_; }
|
| +
|
| + private:
|
| + LOperand* temp_;
|
| };
|
|
|
|
|
|
|