summaryrefslogtreecommitdiff
path: root/chromium/v8/src/hydrogen-redundant-phi.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/v8/src/hydrogen-redundant-phi.h')
-rw-r--r--chromium/v8/src/hydrogen-redundant-phi.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/chromium/v8/src/hydrogen-redundant-phi.h b/chromium/v8/src/hydrogen-redundant-phi.h
index 6291fa5b787..960ae69c95f 100644
--- a/chromium/v8/src/hydrogen-redundant-phi.h
+++ b/chromium/v8/src/hydrogen-redundant-phi.h
@@ -42,8 +42,11 @@ class HRedundantPhiEliminationPhase : public HPhase {
: HPhase("H_Redundant phi elimination", graph) { }
void Run();
+ void ProcessBlock(HBasicBlock* block);
private:
+ void ProcessPhis(const ZoneList<HPhi*>* phis);
+
DISALLOW_COPY_AND_ASSIGN(HRedundantPhiEliminationPhase);
};