bechordal: Remove remnants of the long gone split phase.
[libfirm] / ir / stat / const_stat.c
index 296e74b..8941fa1 100644 (file)
@@ -21,7 +21,6 @@
  * @file
  * @brief   Statistic functions for constant counting.
  * @author  Michael Beck
- * @version $Id$
  */
 #include "config.h"
 
@@ -73,8 +72,8 @@ static float_classify_t classify_float_value(ir_tarval *tv)
                return STAT_FC_0;
        else if (tv == get_mode_one(mode))
                return STAT_FC_1;
-       else if (tarval_is_finite(tv) && tarval_ieee754_zero_mantissa(tv)) {
-               int exp = tarval_ieee754_get_exponent(tv);
+       else if (tarval_is_finite(tv) && tarval_zero_mantissa(tv)) {
+               int exp = tarval_get_exponent(tv);
 
                if (! tarval_is_negative(tv)) {
                        if (exp == 1)