]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* rx.c (SHIFT_OP): A shift by zero still sets the condition codes.
authorNick Clifton <nickc@redhat.com>
Fri, 28 Jun 2013 07:19:44 +0000 (07:19 +0000)
committerNick Clifton <nickc@redhat.com>
Fri, 28 Jun 2013 07:19:44 +0000 (07:19 +0000)
sim/rx/ChangeLog
sim/rx/rx.c

index 39ee94dc6ebcfb5a8c2ebe892e81145f0518576d..d7bfa457c6400337c7f5b9b45620fb6f5a9fac1b 100644 (file)
@@ -1,3 +1,8 @@
+2013-06-25  Nick Clifton  <nickc@redhat.com>
+
+       * rx.c (SHIFT_OP): A shift by zero still sets the condition
+       codes.
+
 2013-06-03  Mike Frysinger  <vapier@gentoo.org>
 
        * aclocal.m4, configure: Regenerate.
index e12aa85d2b672114301222bce6cdd13d81d61d3a..dd886760aee10a7a3a9a6c04f632315192c1581e 100644 (file)
@@ -732,8 +732,7 @@ poppc()
       c = val & carry_mask; \
       val OP 1; \
     } \
-  if (count) \
-    set_oszc (val, 4, c); \
+  set_oszc (val, 4, c); \
   PD (val); \
 }