Changeset 176972 in webkit for trunk/Source/JavaScriptCore/dfg/DFGArrayMode.h
- Timestamp:
- Dec 8, 2014, 2:12:25 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGArrayMode.h
r165099 r176972 407 407 return arrayModesWithIndexingShape(ArrayStorageShape); 408 408 case Array::SlowPutArrayStorage: 409 return arrayModesWithIndexingShape (SlowPutArrayStorageShape);409 return arrayModesWithIndexingShapes(SlowPutArrayStorageShape, ArrayStorageShape); 410 410 default: 411 411 return asArrayModes(NonArray); … … 463 463 } 464 464 465 ArrayModes arrayModesWithIndexingShapes(IndexingType shape1, IndexingType shape2) const 466 { 467 ArrayModes arrayMode1 = arrayModesWithIndexingShape(shape1); 468 ArrayModes arrayMode2 = arrayModesWithIndexingShape(shape2); 469 return arrayMode1 | arrayMode2; 470 } 471 465 472 bool alreadyChecked(Graph&, Node*, AbstractValue&, IndexingType shape) const; 466 473
Note:
See TracChangeset
for help on using the changeset viewer.