diff options
author | Simon Hausmann <simon.hausmann@digia.com> | 2012-11-29 12:18:48 +0100 |
---|---|---|
committer | Simon Hausmann <simon.hausmann@digia.com> | 2012-11-29 12:18:57 +0100 |
commit | 4c01d0526ba4dd8cff0c0ff22a6f0ab5eb973064 (patch) | |
tree | bed2fe914fe0f7ec70abfb47d2d84af8a3604d09 /Source/JavaScriptCore/dfg/DFGAbstractValue.h | |
parent | 01485457c9a5da3f1121015afd25bb53af77662e (diff) | |
download | qtwebkit-4c01d0526ba4dd8cff0c0ff22a6f0ab5eb973064.tar.gz |
Imported WebKit commit c60cfe0fc09efd257aa0111d7b133b02deb8a63e (http://svn.webkit.org/repository/webkit/trunk@136119)
New snapshot that includes the fix for installing the QtWebProcess into libexec
Change-Id: I01344e079cbdac5678c4cba6ffcc05f4597cf0d7
Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'Source/JavaScriptCore/dfg/DFGAbstractValue.h')
-rw-r--r-- | Source/JavaScriptCore/dfg/DFGAbstractValue.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Source/JavaScriptCore/dfg/DFGAbstractValue.h b/Source/JavaScriptCore/dfg/DFGAbstractValue.h index fd3220494..0ce01ab56 100644 --- a/Source/JavaScriptCore/dfg/DFGAbstractValue.h +++ b/Source/JavaScriptCore/dfg/DFGAbstractValue.h @@ -373,13 +373,12 @@ struct AbstractValue { void dump(PrintStream& out) const { - out.printf("(%s, %s, ", speculationToString(m_type), arrayModesToString(m_arrayModes)); - m_currentKnownStructure.dump(out); - out.printf(", "); - m_futurePossibleStructure.dump(out); + out.print( + "(", SpeculationDump(m_type), ", ", arrayModesToString(m_arrayModes), ", ", + m_currentKnownStructure, ", ", m_futurePossibleStructure); if (!!m_value) - out.printf(", %s", m_value.description()); - out.printf(")"); + out.print(", ", m_value.description()); + out.print(")"); } // A great way to think about the difference between m_currentKnownStructure and |