aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Carlton <carlton@bactrian.org>2003-02-24 20:30:57 +0000
committerDavid Carlton <carlton@bactrian.org>2003-02-24 20:30:57 +0000
commit0d2157a93cdc54d5660c034aa87c6843a905cfe1 (patch)
treeb6294892c5a3545e7b0746f2d53850a238f8aebd
parentf5eee004ff3ecdbad71b815f58cf1ec5f01a53a7 (diff)
downloadgdb-0d2157a93cdc54d5660c034aa87c6843a905cfe1.zip
gdb-0d2157a93cdc54d5660c034aa87c6843a905cfe1.tar.gz
gdb-0d2157a93cdc54d5660c034aa87c6843a905cfe1.tar.bz2
2003-02-24 David Carlton <carlton@math.stanford.edu>
* dv-mn103tim.c (read_special_timer6_reg): Add break after empty default: label. (write_special_timer6_reg): Ditto. Update copyright.
-rw-r--r--sim/mn10300/ChangeLog7
-rw-r--r--sim/mn10300/dv-mn103tim.c4
2 files changed, 10 insertions, 1 deletions
diff --git a/sim/mn10300/ChangeLog b/sim/mn10300/ChangeLog
index a53c8eb..e7d77c8 100644
--- a/sim/mn10300/ChangeLog
+++ b/sim/mn10300/ChangeLog
@@ -1,3 +1,10 @@
+2003-02-24 David Carlton <carlton@math.stanford.edu>
+
+ * dv-mn103tim.c (read_special_timer6_reg): Add break after
+ empty default: label.
+ (write_special_timer6_reg): Ditto.
+ Update copyright.
+
2002-11-28 Andrew Cagney <cagney@redhat.com>
* sim-main.h: Only include "idecode.h" once.
diff --git a/sim/mn10300/dv-mn103tim.c b/sim/mn10300/dv-mn103tim.c
index cd79f91..9b1e0d2 100644
--- a/sim/mn10300/dv-mn103tim.c
+++ b/sim/mn10300/dv-mn103tim.c
@@ -1,6 +1,6 @@
/* This file is part of the program GDB, the GNU debugger.
- Copyright (C) 1998 Free Software Foundation, Inc.
+ Copyright (C) 1998, 2003 Free Software Foundation, Inc.
Contributed by Cygnus Solutions.
This program is free software; you can redistribute it and/or modify
@@ -495,6 +495,7 @@ read_special_timer6_reg (struct hw *me,
break;
default:
+ break;
}
break;
}
@@ -950,6 +951,7 @@ write_special_timer6_reg (struct hw *me,
break;
default:
+ break;
}
break;
}