diff options
Diffstat (limited to 'Source/JavaScriptCore/bytecode/CallLinkInfo.h')
-rw-r--r-- | Source/JavaScriptCore/bytecode/CallLinkInfo.h | 6 |
1 files changed, 4 insertions, 2 deletions
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> { CallLinkInfo() : hasSeenShouldRepatch(false) , isDFG(false) + , hasSeenClosure(false) , callType(None) { } @@ -80,12 +81,13 @@ struct CallLinkInfo : public BasicRawSentinelNode<CallLinkInfo> { RefPtr<ClosureCallStubRoutine> 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() { |