]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
simplify-rtx.c (simplify_unary_operation): Add missing break in code that deals with...
authorUros Bizjak <uros@kss-loka.si>
Wed, 23 Mar 2005 14:41:59 +0000 (15:41 +0100)
committerUros Bizjak <uros@gcc.gnu.org>
Wed, 23 Mar 2005 14:41:59 +0000 (15:41 +0100)
* simplify-rtx.c (simplify_unary_operation) <NOT>: Add missing break
in code that deals with logicals on floats.

From-SVN: r96930

gcc/ChangeLog
gcc/simplify-rtx.c

index 425922b1b617495cd2ee480ece9a652fa13068be..c83ce20a37a85485941f1d5a110cfd830ae94fd8 100644 (file)
@@ -1,3 +1,8 @@
+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.
+
 2005-03-22  Uros Bizjak  <uros@kss-loka.si>
 
        PR target/14981
index bdbc30b2404204b3c076bd95912b4d9c8634ae44..fb222f7ae6bd4e26be22fa8e77ae40a0a2cd8635 100644 (file)
@@ -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 ();