summaryrefslogtreecommitdiff
path: root/chromium/v8/src/hydrogen-dce.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/v8/src/hydrogen-dce.h')
-rw-r--r--chromium/v8/src/hydrogen-dce.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/chromium/v8/src/hydrogen-dce.h b/chromium/v8/src/hydrogen-dce.h
index 19749f279a2..2d73b380e40 100644
--- a/chromium/v8/src/hydrogen-dce.h
+++ b/chromium/v8/src/hydrogen-dce.h
@@ -45,7 +45,8 @@ class HDeadCodeEliminationPhase : public HPhase {
}
private:
- bool MarkLive(HValue* ref, HValue* instr);
+ void MarkLive(HValue* instr, ZoneList<HValue*>* worklist);
+ void PrintLive(HValue* ref, HValue* instr);
void MarkLiveInstructions();
void RemoveDeadInstructions();
};