Changeset 192949 in webkit for trunk/Source/JavaScriptCore/dfg/DFGClobberize.h
- Timestamp:
- Dec 2, 2015, 11:15:33 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGClobberize.h
r192882 r192949 248 248 249 249 case ArithAdd: 250 case ArithSub:251 250 case ArithNegate: 252 251 case ArithMul: … … 257 256 def(PureValue(node, node->arithMode())); 258 257 return; 258 259 case ArithSub: 260 switch (node->binaryUseKind()) { 261 case Int32Use: 262 #if USE(JSVALUE64) 263 case Int52RepUse: 264 #endif 265 case DoubleRepUse: 266 def(PureValue(node, node->arithMode())); 267 return; 268 case UntypedUse: 269 read(World); 270 write(Heap); 271 return; 272 default: 273 DFG_CRASH(graph, node, "Bad use kind"); 274 } 259 275 260 276 case ArithRound:
Note:
See TracChangeset
for help on using the changeset viewer.