* simops.c: Undo last change to "rol" and "ror", original code
authorJeff Law <law@redhat.com>
Tue, 21 Jan 1997 22:03:39 +0000 (22:03 +0000)
committerJeff Law <law@redhat.com>
Tue, 21 Jan 1997 22:03:39 +0000 (22:03 +0000)
        was correct!

sim/mn10300/ChangeLog
sim/mn10300/simops.c

index 8a488e6deebd6791bd67b34eeb011d5cfe34d5bd..ab8c87c6878bfdde91f3983960a01670f7937672 100644 (file)
@@ -1,3 +1,8 @@
+Tue Jan 21 15:03:04 1997  Jeffrey A Law  (law@cygnus.com)
+
+       * simops.c: Undo last change to "rol" and "ror", original code
+       was correct!
+
 Thu Jan 16 11:28:14 1997  Jeffrey A Law  (law@cygnus.com)
 
        * simops.c: Fix "rol" and "ror".
index 26146a159af1d1235ec3452fdfea70db8d7d7477..caa2d75136e5ab3e4df763314f09a901501987d8 100644 (file)
@@ -2219,7 +2219,7 @@ void OP_F284 (insn, extension)
   c = (value & 0x1);
 
   value >>= 1;
-  value |= (c) ? 0x80000000 : 0;
+  value |= ((PSW & PSW_C) != 0) ? 0x80000000 : 0;
   State.regs[REG_D0 + REG0 (insn)] = value;
   z = (value == 0);
   n = (value & 0x80000000) != 0;
@@ -2238,7 +2238,7 @@ void OP_F280 (insn, extension)
   c = (value & 0x80000000) ? 1 : 0;
 
   value <<= 1;
-  value |= c;
+  value |= ((PSW & PSW_C) != 0);
   State.regs[REG_D0 + REG0 (insn)] = value;
   z = (value == 0);
   n = (value & 0x80000000) != 0;