From d441d6f39bb846989d95bcf5caf387b42414718d Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen Date: Fri, 13 Sep 2013 12:51:20 +0200 Subject: Import Qt5x2 branch of QtWebkit for Qt 5.2 Importing a new snapshot of webkit. Change-Id: I2d01ad12cdc8af8cb015387641120a9d7ea5f10c Reviewed-by: Allan Sandfeld Jensen --- Source/JavaScriptCore/dfg/DFGVariableAccessDataDump.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Source/JavaScriptCore/dfg/DFGVariableAccessDataDump.cpp') diff --git a/Source/JavaScriptCore/dfg/DFGVariableAccessDataDump.cpp b/Source/JavaScriptCore/dfg/DFGVariableAccessDataDump.cpp index 920858cef..26cca8dcf 100644 --- a/Source/JavaScriptCore/dfg/DFGVariableAccessDataDump.cpp +++ b/Source/JavaScriptCore/dfg/DFGVariableAccessDataDump.cpp @@ -63,6 +63,10 @@ void VariableAccessDataDump::dump(PrintStream& out) const if (m_data->isCaptured()) out.print("*"); + else if (m_data->shouldNeverUnbox()) + out.print("!"); + else if (!m_data->shouldUnboxIfPossible()) + out.print("~"); out.print(AbbreviatedSpeculationDump(m_data->prediction())); } -- cgit v1.2.1