diff options
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 2 | ||||
-rw-r--r-- | gdb/stabsread.c | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 29e5527153a..d8f3b7eed70 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,7 @@ 2011-02-28 Michael Snyder <msnyder@vmware.com> + * stabsread.c (rs6000_builtin_type): Missing break statement. + * dbxread.c (process_one_symbol): Discard unused value. * coffread.c (coff_end_symtab): Delete unused variable. diff --git a/gdb/stabsread.c b/gdb/stabsread.c index c52f960616e..bd8e12b8a2a 100644 --- a/gdb/stabsread.c +++ b/gdb/stabsread.c @@ -2124,6 +2124,7 @@ rs6000_builtin_type (int typenum, struct objfile *objfile) case 9: rettype = init_type (TYPE_CODE_INT, 4, TYPE_FLAG_UNSIGNED, "unsigned", objfile); + break; case 10: rettype = init_type (TYPE_CODE_INT, 4, TYPE_FLAG_UNSIGNED, "unsigned long", objfile); |