From: Uros Bizjak Date: Wed, 23 Mar 2005 14:41:59 +0000 (+0100) Subject: simplify-rtx.c (simplify_unary_operation): Add missing break in code that deals with... X-Git-Tag: releases/gcc-3.4.4~130 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0f6e1dc5870ddb5da04b64602feb427f97f23510;p=thirdparty%2Fgcc.git simplify-rtx.c (simplify_unary_operation): Add missing break in code that deals with logicals on floats. * simplify-rtx.c (simplify_unary_operation) : Add missing break in code that deals with logicals on floats. From-SVN: r96930 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 425922b1b617..c83ce20a37a8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-03-23 Uros Bizjak + + * simplify-rtx.c (simplify_unary_operation) : Add missing break + in code that deals with logicals on floats. + 2005-03-22 Uros Bizjak PR target/14981 diff --git a/gcc/simplify-rtx.c b/gcc/simplify-rtx.c index bdbc30b24042..fb222f7ae6bd 100644 --- a/gcc/simplify-rtx.c +++ b/gcc/simplify-rtx.c @@ -782,6 +782,7 @@ simplify_unary_operation (enum rtx_code code, enum machine_mode mode, for (i = 0; i < 4; i++) tmp[i] = ~tmp[i]; real_from_target (&d, tmp, mode); + break; } default: abort ();