Changeset 251534 in webkit for trunk/Source/JavaScriptCore/interpreter
- Timestamp:
- Oct 24, 2019, 2:06:58 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/CallFrame.cpp
r251529 r251534 117 117 void CallFrame::setCurrentVPC(const Instruction* vpc) 118 118 { 119 CallSiteIndex callSite( codeBlock()->bytecodeIndex(vpc));119 CallSiteIndex callSite(BytecodeIndex(bitwise_cast<uint32_t>(vpc))); 120 120 this[CallFrameSlot::argumentCount].tag() = callSite.bits(); 121 121 }
Note:
See TracChangeset
for help on using the changeset viewer.