[BranchFolding] Set correct mem refs
[oota-llvm.git] / lib / CodeGen / ScheduleDAGPrinter.cpp
index b2e4617720ff53f3bb100aa0d1dbd719fad4a042..1150d26e559b0ee8f683c3999fa8a7fbfaaa24fa 100644 (file)
@@ -43,9 +43,12 @@ namespace llvm {
       return (Node->NumPreds > 10 || Node->NumSuccs > 10);
     }
 
-    static bool hasNodeAddressLabel(const SUnit *Node,
-                                    const ScheduleDAG *Graph) {
-      return true;
+    static std::string getNodeIdentifierLabel(const SUnit *Node,
+                                              const ScheduleDAG *Graph) {
+      std::string R;
+      raw_string_ostream OS(R);
+      OS << static_cast<const void *>(Node);
+      return R;
     }
 
     /// If you want to override the dot attributes printed for a particular