[llvm-commits] CVS: llvm-test/TEST.nightly.report
Chris Lattner
lattner at cs.uiuc.edu
Sun Dec 12 09:10:59 PST 2004
Changes in directory llvm-test:
TEST.nightly.report updated: 1.32 -> 1.33
---
Log message:
Fix ratio computations
---
Diffs of the changes: (+6 -6)
Index: llvm-test/TEST.nightly.report
diff -u llvm-test/TEST.nightly.report:1.32 llvm-test/TEST.nightly.report:1.33
--- llvm-test/TEST.nightly.report:1.32 Sat Dec 11 22:19:16 2004
+++ llvm-test/TEST.nightly.report Sun Dec 12 11:10:44 2004
@@ -22,8 +22,8 @@
sub GCCCBERatio {
my ($Cols, $Col) = @_;
- my $GCC = $Cols->[$Col-6];
- my $CBE = $Cols->[$Col-5];
+ my $GCC = $Cols->[$Col-5];
+ my $CBE = $Cols->[$Col-4];
if ($GCC ne "*" and $CBE ne "*" and $CBE != "0") {
return sprintf("%3.2f", $GCC/$CBE);
} else {
@@ -33,8 +33,8 @@
sub GCCLLCRatio {
my ($Cols, $Col) = @_;
- my $GCC = $Cols->[$Col-7];
- my $LLC = $Cols->[$Col-5];
+ my $GCC = $Cols->[$Col-6];
+ my $LLC = $Cols->[$Col-4];
if ($GCC ne "*" and $LLC ne "*" and $LLC != "0") {
return sprintf("%3.2f", $GCC/$LLC);
} else {
@@ -44,8 +44,8 @@
sub GCCLLC_BETARatio {
my ($Cols, $Col) = @_;
- my $GCC = $Cols->[$Col-8];
- my $LLC_BETA = $Cols->[$Col-5];
+ my $GCC = $Cols->[$Col-7];
+ my $LLC_BETA = $Cols->[$Col-4];
if ($GCC ne "*" and $LLC_BETA ne "*" and $LLC_BETA != "0") {
return sprintf("%3.2f", $GCC/$LLC_BETA);
} else {
More information about the llvm-commits
mailing list