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/bytecode/CallLinkInfo.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Source/JavaScriptCore/bytecode/CallLinkInfo.h') diff --git a/Source/JavaScriptCore/bytecode/CallLinkInfo.h b/Source/JavaScriptCore/bytecode/CallLinkInfo.h index 57608435c..36eb84bee 100644 --- a/Source/JavaScriptCore/bytecode/CallLinkInfo.h +++ b/Source/JavaScriptCore/bytecode/CallLinkInfo.h @@ -57,6 +57,7 @@ struct CallLinkInfo : public BasicRawSentinelNode { CallLinkInfo() : hasSeenShouldRepatch(false) , isDFG(false) + , hasSeenClosure(false) , callType(None) { } @@ -80,12 +81,13 @@ struct CallLinkInfo : public BasicRawSentinelNode { RefPtr stub; bool hasSeenShouldRepatch : 1; bool isDFG : 1; - CallType callType : 6; + bool hasSeenClosure : 1; + CallType callType : 5; unsigned calleeGPR : 8; CodeOrigin codeOrigin; bool isLinked() { return stub || callee; } - void unlink(JSGlobalData&, RepatchBuffer&); + void unlink(VM&, RepatchBuffer&); bool seenOnce() { -- cgit v1.2.1