Changeset 208326 in webkit for trunk/Source/JavaScriptCore/bytecode/CodeBlock.h
- Timestamp:
- Nov 3, 2016, 7:39:47 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CodeBlock.h
r208309 r208326 415 415 SpeculatedType valueProfilePredictionForBytecodeOffset(const ConcurrentJITLocker& locker, int bytecodeOffset) 416 416 { 417 return valueProfileForBytecodeOffset(bytecodeOffset)->computeUpdatedPrediction(locker); 417 if (ValueProfile* valueProfile = valueProfileForBytecodeOffset(bytecodeOffset)) 418 return valueProfile->computeUpdatedPrediction(locker); 419 return SpecNone; 418 420 } 419 421
Note:
See TracChangeset
for help on using the changeset viewer.