| Index: runtime/vm/instructions_x64.h
|
| diff --git a/runtime/vm/instructions_x64.h b/runtime/vm/instructions_x64.h
|
| index 0d6bb0865c3d5dada0144f35dc4cd3222801f82b..8f5cda401c937f11b0772e480893035575398583 100644
|
| --- a/runtime/vm/instructions_x64.h
|
| +++ b/runtime/vm/instructions_x64.h
|
| @@ -60,7 +60,7 @@ class JumpPattern : public InstructionPattern {
|
| public:
|
| JumpPattern(uword pc, const Code& code)
|
| : InstructionPattern(pc),
|
| - object_pool_(Array::Handle(code.ObjectPool())) {}
|
| + object_pool_(ObjectPool::Handle(code.GetObjectPool())) {}
|
| static int InstructionLength() {
|
| return kLengthInBytes;
|
| }
|
| @@ -73,7 +73,7 @@ class JumpPattern : public InstructionPattern {
|
| static const int kLengthInBytes = 7;
|
| private:
|
| virtual const int* pattern() const;
|
| - const Array& object_pool_;
|
| + const ObjectPool& object_pool_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(JumpPattern);
|
| };
|
|
|