aboutsummaryrefslogtreecommitdiff
path: root/sim
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2001-02-14 03:55:57 +0000
committerNick Clifton <nickc@redhat.com>2001-02-14 03:55:57 +0000
commit94ab9d7b9e302d3fe445193d0dc91a058e64bc08 (patch)
treebbf5ee29ed9b9a463f75548872cacb82b979deb1 /sim
parent1e5d4e465c08386f5688842053fdfb4301dc4dd9 (diff)
downloadfsf-binutils-gdb-94ab9d7b9e302d3fe445193d0dc91a058e64bc08.zip
fsf-binutils-gdb-94ab9d7b9e302d3fe445193d0dc91a058e64bc08.tar.gz
fsf-binutils-gdb-94ab9d7b9e302d3fe445193d0dc91a058e64bc08.tar.bz2
remove spurious whitespace
Diffstat (limited to 'sim')
-rw-r--r--sim/arm/armos.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sim/arm/armos.c b/sim/arm/armos.c
index 6545cc8..678f177 100644
--- a/sim/arm/armos.c
+++ b/sim/arm/armos.c
@@ -139,7 +139,6 @@ static ARMword softvectorcode[] =
0xe1a0f00e /* Default handler */
};
-
/* Set to prevent aborts when emulating SWI routines. */
static int in_SWI_handler = 0;
@@ -542,6 +541,7 @@ ARMul_OSHandleSWI (ARMul_State * state, ARMword number)
case AngelSWI_Reason_WriteC:
(void) fputc ((int) ARMul_ReadByte (state, addr), stdout);
OSptr->ErrorNo = errno;
+ /* Fall thgrough. */
case AngelSWI_Reason_Write0:
SWIWrite0 (state, addr);
@@ -634,7 +634,7 @@ ARMul_OSHandleSWI (ARMul_State * state, ARMword number)
default:
in_SWI_handler = 0;
-
+
/* If there is a SWI vector installed use it. */
if (state->is_XScale && saved_number != -1)
number = saved_number;
@@ -643,16 +643,16 @@ ARMul_OSHandleSWI (ARMul_State * state, ARMword number)
{
ARMword cpsr;
ARMword i_size;
-
+
cpsr = ARMul_GetCPSR (state);
i_size = INSN_SIZE;
-
+
ARMul_SetSPSR (state, SVC32MODE, cpsr);
-
+
cpsr &= ~0xbf;
cpsr |= SVC32MODE | 0x80;
ARMul_SetCPSR (state, cpsr);
-
+
state->RegBank[SVCBANK][14] = state->Reg[14] = state->Reg[15] - i_size;
state->NextInstr = RESUME;
state->Reg[15] = state->pc = ARMSWIV;