[llvm-commits] CVS: llvm/test/DSGraphs/htmlcoldiff.pl
Chris Lattner
lattner at cs.uiuc.edu
Sun Nov 17 16:19:01 PST 2002
Changes in directory llvm/test/DSGraphs:
htmlcoldiff.pl updated: 1.2 -> 1.3
---
Log message:
Reduce threshold to print change
---
Diffs of the changes:
Index: llvm/test/DSGraphs/htmlcoldiff.pl
diff -u llvm/test/DSGraphs/htmlcoldiff.pl:1.2 llvm/test/DSGraphs/htmlcoldiff.pl:1.3
--- llvm/test/DSGraphs/htmlcoldiff.pl:1.2 Sun Nov 10 01:31:02 2002
+++ llvm/test/DSGraphs/htmlcoldiff.pl Sun Nov 17 16:18:46 2002
@@ -48,7 +48,7 @@
$Field != 0) { # Handle floating point numbers special
# They are only highlighted if they change by 20% or more...
my $Change = $FieldComp/$Field;
- $Hilight = 1 if ($Change > 2 || $Change < 0.5);
+ $Hilight = 1 if ($Change > 1.3333 || $Change < 0.666);
} elsif ($Field ne $FieldComp) {
$Hilight = 1;
More information about the llvm-commits
mailing list