From 0f6e1dc5870ddb5da04b64602feb427f97f23510 Mon Sep 17 00:00:00 2001 From: Uros Bizjak Date: Wed, 23 Mar 2005 15:41:59 +0100 Subject: [PATCH] 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 --- gcc/ChangeLog | 5 +++++ gcc/simplify-rtx.c | 1 + 2 files changed, 6 insertions(+) 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 (); -- 2.47.2