* armemu.c (LoadSMult): Use WriteR15() to discard the least
authorAlexandre Oliva <aoliva@redhat.com>
Tue, 4 Jul 2000 06:39:39 +0000 (06:39 +0000)
committerAlexandre Oliva <aoliva@redhat.com>
Tue, 4 Jul 2000 06:39:39 +0000 (06:39 +0000)
significant bits of PC.

sim/arm/ChangeLog
sim/arm/armemu.c

index 526b49d..06345b2 100644 (file)
@@ -1,5 +1,8 @@
 2000-07-04  Alexandre Oliva  <aoliva@redhat.com>
 
+       * armemu.c (LoadSMult): Use WriteR15() to discard the least
+       significant bits of PC.
+
        * armemu.h (WRITEDESTB): New macro.
        * armemu.c (ARMul_Emulate26, bl): Use WriteR15Branch() to
        modify PC.  Moved the existing logic...
index 2fc0eda..43cd6dc 100644 (file)
@@ -3544,7 +3544,7 @@ LoadSMult (ARMul_State * state, ARMword instr,
          state->Cpsr = GETSPSR (state->Bank);
          ARMul_CPSRAltered (state);
        }
-      state->Reg[15] = PC;
+      WriteR15 (state, PC);
 #else
       if (state->Mode == USER26MODE || state->Mode == USER32MODE)
        {                       /* protect bits in user mode */
@@ -3555,8 +3555,8 @@ LoadSMult (ARMul_State * state, ARMword instr,
        }
       else
        ARMul_R15Altered (state);
-#endif
       FLUSHPIPE;
+#endif
     }
 
   if (!BIT (15) && state->Mode != USER26MODE && state->Mode != USER32MODE)