From: Michael Beck Date: Tue, 9 Sep 2008 10:10:09 +0000 (+0000) Subject: - currently we support IEEE 754 only, so change the condition X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=86b73273adeb39f6053bcf0112b6e77e5234a9eb;p=libfirm - currently we support IEEE 754 only, so change the condition [r21774] --- diff --git a/ir/ir/iropt.c b/ir/ir/iropt.c index d6f6d3b8c..f0960120a 100644 --- a/ir/ir/iropt.c +++ b/ir/ir/iropt.c @@ -1259,7 +1259,7 @@ restart: } } } - if (mode_is_int(n_mode) && mode_is_float(a_mode)) { + if (mode_is_int(n_mode) && get_mode_arithmetic(a_mode) == irma_ieee754) { /* ConvI(ConvF(I)) -> I, iff float mantissa >= int mode */ size_t int_mantissa = get_mode_size_bits(n_mode) - (mode_is_signed(n_mode) ? 1 : 0); size_t float_mantissa = tarval_ieee754_get_mantissa_size(a_mode);