summaryrefslogtreecommitdiff
path: root/compiler/optimizing/code_generator.h
diff options
context:
space:
mode:
author Vladimir Marko <vmarko@google.com> 2017-10-12 11:35:46 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2017-10-12 11:35:46 +0000
commit37c7405977f88a4f45887178948b27490e8ebfc9 (patch)
tree6173564d8bab17c37ab1cdb989e326dcf1f17823 /compiler/optimizing/code_generator.h
parent387c28110e562a11cc27448472f2031251a9ded4 (diff)
parentbea75ff0835324076fed6ff5d443b9e02c65d223 (diff)
Merge "Fix using LiveIntervals beyond their lifetime."
Diffstat (limited to 'compiler/optimizing/code_generator.h')
-rw-r--r--compiler/optimizing/code_generator.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/optimizing/code_generator.h b/compiler/optimizing/code_generator.h
index 2c3cf262b1..2904b71991 100644
--- a/compiler/optimizing/code_generator.h
+++ b/compiler/optimizing/code_generator.h
@@ -380,7 +380,8 @@ class CodeGenerator : public DeletableArenaObject<kArenaAllocCodeGenerator> {
// for the suspend check at the back edge (instead of where the suspend check
// is, which is the loop entry). At this point, the spill slots for the phis
// have not been written to.
- void ClearSpillSlotsFromLoopPhisInStackMap(HSuspendCheck* suspend_check) const;
+ void ClearSpillSlotsFromLoopPhisInStackMap(HSuspendCheck* suspend_check,
+ HParallelMove* spills) const;
bool* GetBlockedCoreRegisters() const { return blocked_core_registers_; }
bool* GetBlockedFloatingPointRegisters() const { return blocked_fpu_registers_; }