Changeset 254632 in webkit for trunk/Source/JavaScriptCore/dfg/DFGConstantFoldingPhase.cpp
- Timestamp:
- Jan 15, 2020, 1:30:57 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGConstantFoldingPhase.cpp
r254252 r254632 384 384 // GCSE removes the access entirely. 385 385 if (inlineCallFrame) { 386 if (index >= static_cast<unsigned>(inlineCallFrame->argumentCountIncludingThis - 1))386 if (index >= inlineCallFrame->argumentCountIncludingThis - 1) 387 387 break; 388 388 } else { … … 405 405 } 406 406 407 if (inlineCallFrame && !inlineCallFrame->isVarargs() && index < static_cast<unsigned>(inlineCallFrame->argumentCountIncludingThis - 1)) {407 if (inlineCallFrame && !inlineCallFrame->isVarargs() && index < inlineCallFrame->argumentCountIncludingThis - 1) { 408 408 node->convertToGetStack(data); 409 409 eliminated = true;
Note:
See TracChangeset
for help on using the changeset viewer.