diff options
| author | 2018-08-02 09:51:25 -0700 | |
|---|---|---|
| committer | 2018-08-02 09:51:25 -0700 | |
| commit | cf20fd84969075deb5d4c84285f304fda5938afd (patch) | |
| tree | 2692d05119a76bb7c97b932cd4fe54362691fda2 /compiler/optimizing/scheduler_arm.h | |
| parent | 6199b8336b4989473e7a5d2dced3e991b06db056 (diff) | |
| parent | eeac119a22b09496eb66109c906df6a5243eac36 (diff) | |
Merge "Reuse arena memory for each block in scheduler."
am: eeac119a22
Change-Id: Icc46e74e1c803bb3fefec99abb8343d216283d10
Diffstat (limited to 'compiler/optimizing/scheduler_arm.h')
| -rw-r--r-- | compiler/optimizing/scheduler_arm.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/compiler/optimizing/scheduler_arm.h b/compiler/optimizing/scheduler_arm.h index 0cb8684376..2f369486b3 100644 --- a/compiler/optimizing/scheduler_arm.h +++ b/compiler/optimizing/scheduler_arm.h @@ -137,10 +137,9 @@ class SchedulingLatencyVisitorARM : public SchedulingLatencyVisitor { class HSchedulerARM : public HScheduler { public: - HSchedulerARM(ScopedArenaAllocator* allocator, - SchedulingNodeSelector* selector, + HSchedulerARM(SchedulingNodeSelector* selector, SchedulingLatencyVisitorARM* arm_latency_visitor) - : HScheduler(allocator, arm_latency_visitor, selector) {} + : HScheduler(arm_latency_visitor, selector) {} ~HSchedulerARM() OVERRIDE {} bool IsSchedulable(const HInstruction* instruction) const OVERRIDE { |