[llvm-commits] CVS: llvm/utils/NightlyTest.gnuplot
LLVM
llvm at cs.uiuc.edu
Tue Jul 6 12:05:02 PDT 2004
Changes in directory llvm/utils:
NightlyTest.gnuplot updated: 1.10 -> 1.11
---
Log message:
Change the "rotate by 90" xtics specification to just "rotate" which is
equivalent. The "by <angle>" syntax is not acceptable for all output
devices. Apparently the Sparc and x86 output devices (no color) don't
accept this, but should accept the plain "rotate".
---
Diffs of the changes: (+7 -7)
Index: llvm/utils/NightlyTest.gnuplot
diff -u llvm/utils/NightlyTest.gnuplot:1.10 llvm/utils/NightlyTest.gnuplot:1.11
--- llvm/utils/NightlyTest.gnuplot:1.10 Mon Jul 5 14:09:32 2004
+++ llvm/utils/NightlyTest.gnuplot Tue Jul 6 12:04:09 2004
@@ -18,7 +18,7 @@
set label "llvm/projects" at "2004-01-04:", 151000
set size .75,.75
-set xtics rotate by 90
+set xtics rotate
set xlabel 0,-1
plot "running_loc.txt" using 1:2 title '' with lines, \
"running_loc.txt" using 1:2 title "Date vs. Lines of Code" with lines
@@ -38,7 +38,7 @@
##------- Olden CBE performance ----
set size .75,.75
-set xtics rotate by 90
+set xtics rotate
set xlabel 0,-1
set output "running_Olden_cbe_time.png"
set ylabel "CBE compiled execution time (s)"
@@ -75,7 +75,7 @@
##------- Olden JIT performance ----
set size .75,.75
-set xtics rotate by 90
+set xtics rotate
set xlabel 0,-1
set output "running_Olden_jit_time.png"
set ylabel "JIT execution time (s)"
@@ -112,7 +112,7 @@
##------- Olden LLC performance ----
set size .75,.75
-set xtics rotate by 90
+set xtics rotate
set xlabel 0,-1
set output "running_Olden_llc_time.png"
set ylabel "LLC compiled execution time (s)"
@@ -150,7 +150,7 @@
##------- Olden optimizer time ----
set size .75,.75
-set xtics rotate by 90
+set xtics rotate
set xlabel 0,-1
set output "running_Olden_opt_time.png"
set ylabel "Time to run the optimizer (s)"
@@ -188,7 +188,7 @@
##------- Machine code size ----
set size .75,.75
-set xtics rotate by 90
+set xtics rotate
set xlabel 0,-1
set output "running_Olden_machcode.png"
set ylabel "Program machine code size (bytes)"
@@ -226,7 +226,7 @@
##------- Bytecode size ----
set size .75,.75
-set xtics rotate by 90
+set xtics rotate
set xlabel 0,-1
set output "running_Olden_bytecode.png"
set ylabel "Program bytecode size (bytes)"
More information about the llvm-commits
mailing list