Changeset 180656 in webkit for trunk/Source/JavaScriptCore/dfg/DFGClobberize.cpp
- Timestamp:
- Feb 25, 2015, 8:29:26 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGClobberize.cpp
r179840 r180656 57 57 } 58 58 59 bool clobbers World(Graph& graph, Node* node)59 bool clobbersHeap(Graph& graph, Node* node) 60 60 { 61 61 bool result = false; … … 63 63 graph, node, NoOpClobberize(), 64 64 [&] (AbstractHeap heap) { 65 if (heap == AbstractHeap(World)) 65 switch (heap.kind()) { 66 case World: 67 case Heap: 66 68 result = true; 69 break; 70 default: 71 break; 72 } 67 73 }, 68 74 NoOpClobberize());
Note:
See TracChangeset
for help on using the changeset viewer.