[llvm-commits] CVS: llvm/test/DSGraphs/generate_report.pl

Chris Lattner lattner at cs.uiuc.edu
Wed Nov 6 20:09:04 PST 2002


Changes in directory llvm/test/DSGraphs:

generate_report.pl updated: 1.2 -> 1.3

---
Log message:

Minor cleanups for script


---
Diffs of the changes:

Index: llvm/test/DSGraphs/generate_report.pl
diff -u llvm/test/DSGraphs/generate_report.pl:1.2 llvm/test/DSGraphs/generate_report.pl:1.3
--- llvm/test/DSGraphs/generate_report.pl:1.2	Wed Nov  6 19:56:35 2002
+++ llvm/test/DSGraphs/generate_report.pl	Wed Nov  6 20:08:18 2002
@@ -42,14 +42,14 @@
     printField('([0-9.]+) \([^)]+\)[ ]*[0-9]+  TOTAL', $Record, 10);
     printField('real\s+([ms0-9.]+)', $Record, 10);
 
-    print "-    ";
+    print "|    ";
     # Print Sizes
     printField("([0-9]+)  Local", $Record, 10);
     printField("([0-9]+)  Bottom-up", $Record, 10);
     printField("([0-9]+)  Top-down", $Record, 10);
     printField("([0-9]+)  TOTAL", $Record, 10);
 
-    print "-    ";
+    print "|    ";
     printField("([0-9]+).*completely folded", $Record, 5);
     printField("\.main\.dot.... \\[([+0-9]+)\\]", $Record, 8);
     printField("\.__main\.dot.... \\[([0-9+]+)\\]", $Record, 8);
@@ -67,5 +67,5 @@
     printf("%-${FieldWidth}s", "*");
   } else {
     printf("%-${FieldWidth}s", $1);
-}
+  }
 }





More information about the llvm-commits mailing list