Changeset 164493 in webkit for trunk/Source/JavaScriptCore/dfg/DFGNode.h
- Timestamp:
- Feb 21, 2014, 12:37:19 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGNode.h
r164424 r164493 1482 1482 } 1483 1483 1484 bool shouldSpeculateOther() 1485 { 1486 return isOtherSpeculation(prediction()); 1487 } 1488 1484 1489 bool shouldSpeculateCell() 1485 1490 { 1486 1491 return isCellSpeculation(prediction()); 1492 } 1493 1494 bool shouldSpeculateNotCell() 1495 { 1496 return isNotCellSpeculation(prediction()); 1487 1497 } 1488 1498
Note:
See TracChangeset
for help on using the changeset viewer.