Changeset 192485 in webkit for trunk/Source/JavaScriptCore/dfg/DFGEdge.cpp
- Timestamp:
- Nov 16, 2015, 2:10:56 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGEdge.cpp
r172176 r192485 36 36 void Edge::dump(PrintStream& out) const 37 37 { 38 if (useKindUnchecked() != UntypedUse) { 39 if (!isProved()) 40 out.print("Check:"); 41 out.print(useKind(), ":"); 42 } 38 if (!isProved()) 39 out.print("Check:"); 40 out.print(useKind(), ":"); 43 41 if (DFG::doesKill(killStatusUnchecked())) 44 42 out.print("Kill:");
Note:
See TracChangeset
for help on using the changeset viewer.