*** empty log message ***
authorAdam Szalkowski <adam@ipd.info.uni-karlsruhe.de>
Sun, 3 Sep 2006 09:11:37 +0000 (09:11 +0000)
committerAdam Szalkowski <adam@ipd.info.uni-karlsruhe.de>
Sun, 3 Sep 2006 09:11:37 +0000 (09:11 +0000)
[r8159]

ir/ana/execfreq.c

index d42d509..5125f71 100644 (file)
@@ -259,7 +259,7 @@ compute_execfreq(ir_graph * irg, double loop_weight)
     freq->freq = ZERO(x[idx]) ? 0.0 : x[idx];
 #endif
        /* Get the minimum non-zero execution frequency. */
-       if(freq->freq != 0.0)
+       if(freq->freq > 0.0)
                ef->min_non_zero = MIN(ef->min_non_zero, freq->freq);
   }