Changeset 179015 in webkit for trunk/Source/JavaScriptCore/dfg/DFGStackLayoutPhase.cpp
- Timestamp:
- Jan 23, 2015, 11:52:25 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGStackLayoutPhase.cpp
r176479 r179015 170 170 171 171 if (codeBlock()->scopeRegister().isValid()) { 172 codeBlock()->setScopeRegister(173 virtualRegisterForLocal(allocation[codeBlock()->scopeRegister().toLocal()]));172 unsigned scopeRegisterAllocation = allocation[codeBlock()->scopeRegister().toLocal()]; 173 codeBlock()->setScopeRegister(scopeRegisterAllocation == UINT_MAX ? VirtualRegister() : virtualRegisterForLocal(scopeRegisterAllocation)); 174 174 } 175 175
Note:
See TracChangeset
for help on using the changeset viewer.