This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[3.4 PATCH, PR target/14981]: Commited: add missing break
- From: Uros Bizjak <uros at kss-loka dot si>
- To: gcc-patches at gcc dot gnu dot org
- Date: Wed, 23 Mar 2005 15:18:45 +0100
- Subject: [3.4 PATCH, PR target/14981]: Commited: add missing break
Hello!
This is a cut'n'pasto when code was backported from mainline. Commited
to 3.4 branch as obvious.
Thanks Michael Chamberlain for spotting this!
2005-03-23 Uros Bizjak <uros@kss-loka.si>
* simplify-rtx.c (simplify_unary_operation) <NOT>: Add missing break
in code that deals with logicals on floats.
Uros.
Index: simplify-rtx.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/simplify-rtx.c,v
retrieving revision 1.172.4.5
diff -u -p -r1.172.4.5 simplify-rtx.c
--- simplify-rtx.c 22 Mar 2005 15:53:34 -0000 1.172.4.5
+++ simplify-rtx.c 23 Mar 2005 14:10:46 -0000
@@ -782,6 +782,7 @@ simplify_unary_operation (enum rtx_code
for (i = 0; i < 4; i++)
tmp[i] = ~tmp[i];
real_from_target (&d, tmp, mode);
+ break;
}
default:
abort ();