summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/dfg/DFGPhase.cpp
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@lorry>2015-05-20 09:56:07 +0000
committerLorry Tar Creator <lorry-tar-importer@lorry>2015-05-20 09:56:07 +0000
commit41386e9cb918eed93b3f13648cbef387e371e451 (patch)
treea97f9d7bd1d9d091833286085f72da9d83fd0606 /Source/JavaScriptCore/dfg/DFGPhase.cpp
parente15dd966d523731101f70ccf768bba12435a0208 (diff)
downloadWebKitGtk-tarball-41386e9cb918eed93b3f13648cbef387e371e451.tar.gz
webkitgtk-2.4.9webkitgtk-2.4.9
Diffstat (limited to 'Source/JavaScriptCore/dfg/DFGPhase.cpp')
-rw-r--r--Source/JavaScriptCore/dfg/DFGPhase.cpp10
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