diff --git a/llvm/utils/release/findRegressions.py b/llvm/utils/release/findRegressions.py index 7629c8b4fbf1d2d6f8881270171ee2ec04361477..d3811a53b70725ca654b543b71bd139314a62651 100755 --- a/llvm/utils/release/findRegressions.py +++ b/llvm/utils/release/findRegressions.py @@ -105,8 +105,8 @@ def diffResults(d_old, d_new): elif not math.isnan(d_old[t][x]) and math.isnan(d_new[t][x]): print t + " *** REGRESSION (" + x + ")" - if d_new[t][x] > d_old[t][x] and \ - (d_new[t][x] - d_old[t][x]) / d_new[t][x] > .05: + if d_new[t][x] > d_old[t][x] and d_old[t][x] > 0.0 and \ + (d_new[t][x] - d_old[t][x]) / d_old[t][x] > .05: print t + " *** REGRESSION (" + x + ")" else :