Fix check style breakage.

BUG=
R=mstarzinger@chromium.org

Review URL: https://codereview.chromium.org/18056005

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@15363 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
hpayer@chromium.org 2013-06-27 15:17:55 +00:00
parent 3ff7ab9ead
commit 2957b2fdf8

View File

@ -428,7 +428,10 @@ class HGraph: public ZoneObject {
int32_t integer_value);
template<class Phase>
void Run() { Phase phase(this); phase.Run(); }
void Run() {
Phase phase(this);
phase.Run();
}
void MarkLive(HValue* ref, HValue* instr, ZoneList<HValue*>* worklist);
void MarkLiveInstructions();