[llvm-commits] CVS: llvm/test/Programs/TEST.nightly.report

Alkis Evlogimenos alkis at cs.uiuc.edu
Wed Feb 25 12:39:02 PST 2004


Changes in directory llvm/test/Programs:

TEST.nightly.report updated: 1.22 -> 1.23

---
Log message:

Update column offsets after jit-ls addition.


---
Diffs of the changes:  (+6 -6)

Index: llvm/test/Programs/TEST.nightly.report
diff -u llvm/test/Programs/TEST.nightly.report:1.22 llvm/test/Programs/TEST.nightly.report:1.23
--- llvm/test/Programs/TEST.nightly.report:1.22	Mon Feb 23 10:21:11 2004
+++ llvm/test/Programs/TEST.nightly.report	Wed Feb 25 12:38:17 2004
@@ -21,8 +21,8 @@
 
 sub GCCCBERatio {
   my ($Cols, $Col) = @_;
-  my $GCC = $Cols->[$Col-5];
-  my $CBE = $Cols->[$Col-4];
+  my $GCC = $Cols->[$Col-6];
+  my $CBE = $Cols->[$Col-5];
   if ($GCC ne "*" and $CBE ne "*" and $CBE != "0") {
     return sprintf("%3.2f", $GCC/$CBE);
   } else {
@@ -32,8 +32,8 @@
 
 sub GCCLLCRatio {
   my ($Cols, $Col) = @_;
-  my $GCC = $Cols->[$Col-6];
-  my $LLC = $Cols->[$Col-4];
+  my $GCC = $Cols->[$Col-7];
+  my $LLC = $Cols->[$Col-5];
   if ($GCC ne "*" and $LLC ne "*" and $LLC != "0") {
     return sprintf("%3.2f", $GCC/$LLC);
   } else {
@@ -43,8 +43,8 @@
 
 sub GCCLLC_LSRatio {
   my ($Cols, $Col) = @_;
-  my $GCC = $Cols->[$Col-7];
-  my $LLC_LS = $Cols->[$Col-4];
+  my $GCC = $Cols->[$Col-8];
+  my $LLC_LS = $Cols->[$Col-5];
   if ($GCC ne "*" and $LLC_LS ne "*" and $LLC_LS != "0") {
     return sprintf("%3.2f", $GCC/$LLC_LS);
   } else {





More information about the llvm-commits mailing list