diff options
Diffstat (limited to 'Source/JavaScriptCore/dfg/DFGPhase.cpp')
| -rw-r--r-- | Source/JavaScriptCore/dfg/DFGPhase.cpp | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/Source/JavaScriptCore/dfg/DFGPhase.cpp b/Source/JavaScriptCore/dfg/DFGPhase.cpp index c13c8c449..32e039ec5 100644 --- a/Source/JavaScriptCore/dfg/DFGPhase.cpp +++ b/Source/JavaScriptCore/dfg/DFGPhase.cpp @@ -29,21 +29,13 @@ #if ENABLE(DFG_JIT) #include "DFGValidate.h" -#include "JSCInlines.h" namespace JSC { namespace DFG { void Phase::beginPhase() { - if (Options::verboseValidationFailure()) { - StringPrintStream out; - m_graph.dump(out); - m_graphDumpBeforePhase = out.toCString(); - } - if (!shouldDumpGraphAtEachPhase()) return; - dataLog("Beginning DFG phase ", m_name, ".\n"); dataLog("Before ", m_name, ":\n"); m_graph.dump(); @@ -53,7 +45,7 @@ void Phase::endPhase() { if (!Options::validateGraphAtEachPhase()) return; - validate(m_graph, DumpGraph, m_graphDumpBeforePhase); + validate(m_graph, DumpGraph); } } } // namespace JSC::DFG |
