]> git.saurik.com Git - apple/javascriptcore.git/blobdiff - dfg/DFGEdge.cpp
JavaScriptCore-7600.1.4.9.tar.gz
[apple/javascriptcore.git] / dfg / DFGEdge.cpp
index 35d78f80e68f1f55a9e981d3cb8665c055278cbb..bf05f350291442507692de6a3cf4247b398a02e9 100644 (file)
 #if ENABLE(DFG_JIT)
 
 #include "DFGNode.h"
+#include "JSCInlines.h"
 
 namespace JSC { namespace DFG {
 
 void Edge::dump(PrintStream& out) const
 {
-    if (useKind() != UntypedUse) {
+    if (useKindUnchecked() != UntypedUse) {
         if (needsCheck())
             out.print("Check:");
         out.print(useKind(), ":");
     }
+    if (DFG::doesKill(killStatusUnchecked()))
+        out.print("Kill:");
     out.print(node());
 }