From cf72e5741e10bf5565601a33e4e95236d3c1f6ad Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Wed, 6 Aug 2008 21:01:58 +0000 Subject: [PATCH] Optimise strct Conv after strict Conv with same mode. [r21023] --- ir/ir/iropt.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/ir/ir/iropt.c b/ir/ir/iropt.c index efe954f0b..9455a8ee8 100644 --- a/ir/ir/iropt.c +++ b/ir/ir/iropt.c @@ -1228,10 +1228,12 @@ restart: assert(get_Load_mode(pred) == n_mode); return a; } + /* leave strict floating point Conv's */ + return n; + } else { + /* leave strict floating point Conv's */ + return n; } - - /* leave strict floating point Conv's */ - return n; } n = a; DBG_OPT_ALGSIM0(oldn, n, FS_OPT_CONV); -- 2.20.1