aboutsummaryrefslogtreecommitdiff
path: root/sim/mips/interp.c
diff options
context:
space:
mode:
authorChris Demetriou <cgd@google.com>2002-06-03 22:30:52 +0000
committerChris Demetriou <cgd@google.com>2002-06-03 22:30:52 +0000
commite80fc1523d15f2ff344ab9ef6798765dab9ca0db (patch)
tree874033c1785d2f5e88e00923f3933bb7b5c2510c /sim/mips/interp.c
parentbad673a9cb51c25370660c88887d0ad3b34b007b (diff)
downloadfsf-binutils-gdb-e80fc1523d15f2ff344ab9ef6798765dab9ca0db.zip
fsf-binutils-gdb-e80fc1523d15f2ff344ab9ef6798765dab9ca0db.tar.gz
fsf-binutils-gdb-e80fc1523d15f2ff344ab9ef6798765dab9ca0db.tar.bz2
2002-06-03 Chris Demetriou <cgd@broadcom.com>
* cp1.c: fix formatting of switch case and default labels. * interp.c: Likewise. * sim-main.c: Likewise.
Diffstat (limited to 'sim/mips/interp.c')
-rw-r--r--sim/mips/interp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sim/mips/interp.c b/sim/mips/interp.c
index 805f72a..35016e3 100644
--- a/sim/mips/interp.c
+++ b/sim/mips/interp.c
@@ -1223,7 +1223,7 @@ sim_monitor (SIM_DESC sd,
break;
}
- case 28 : /* PMON flush_cache */
+ case 28: /* PMON flush_cache */
break;
case 55: /* void get_mem_info(unsigned int *ptr) */
@@ -1242,7 +1242,7 @@ sim_monitor (SIM_DESC sd,
break;
}
- case 158 : /* PMON printf */
+ case 158: /* PMON printf */
/* in: A0 = pointer to format string */
/* A1 = optional argument 1 */
/* A2 = optional argument 2 */
@@ -1671,7 +1671,7 @@ signal_exception (SIM_DESC sd,
switch (exception) {
- case DebugBreakPoint :
+ case DebugBreakPoint:
if (! (Debug & Debug_DM))
{
if (INDELAYSLOT())
@@ -1694,7 +1694,7 @@ signal_exception (SIM_DESC sd,
}
break;
- case ReservedInstruction :
+ case ReservedInstruction:
{
va_list ap;
unsigned int instruction;
@@ -1845,7 +1845,7 @@ signal_exception (SIM_DESC sd,
sim_engine_halt (SD, CPU, NULL, PC,
sim_stopped, SIM_SIGTRAP);
- default : /* Unknown internal exception */
+ default: /* Unknown internal exception */
PC = EPC;
sim_engine_halt (SD, CPU, NULL, PC,
sim_stopped, SIM_SIGABRT);