| Index: src/arm/lithium-arm.h
|
| ===================================================================
|
| --- src/arm/lithium-arm.h (revision 7030)
|
| +++ src/arm/lithium-arm.h (working copy)
|
| @@ -1254,10 +1254,11 @@
|
| };
|
|
|
|
|
| -class LStoreGlobal: public LTemplateInstruction<0, 1, 0> {
|
| +class LStoreGlobal: public LTemplateInstruction<0, 1, 1> {
|
| public:
|
| - explicit LStoreGlobal(LOperand* value) {
|
| + LStoreGlobal(LOperand* value, LOperand* temp) {
|
| inputs_[0] = value;
|
| + temps_[0] = temp;
|
| }
|
|
|
| DECLARE_CONCRETE_INSTRUCTION(StoreGlobal, "store-global")
|
| @@ -1854,7 +1855,7 @@
|
| argument_count_(0),
|
| allocator_(allocator),
|
| position_(RelocInfo::kNoPosition),
|
| - instructions_pending_deoptimization_environment_(NULL),
|
| + instruction_pending_deoptimization_environment_(NULL),
|
| pending_deoptimization_ast_id_(AstNode::kNoNumber) { }
|
|
|
| // Build the sequence for the graph.
|
| @@ -1988,7 +1989,7 @@
|
| int argument_count_;
|
| LAllocator* allocator_;
|
| int position_;
|
| - LInstruction* instructions_pending_deoptimization_environment_;
|
| + LInstruction* instruction_pending_deoptimization_environment_;
|
| int pending_deoptimization_ast_id_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
|
|
|