From: Michael Snyder Date: Mon, 28 Feb 2011 23:32:27 +0000 (+0000) Subject: 2011-02-28 Michael Snyder X-Git-Tag: cgen-snapshot-20110401~494 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=89acf84dcedf65c04634c42c6312e671b72ef27f;p=platform%2Fupstream%2Fbinutils.git 2011-02-28 Michael Snyder * stabsread.c (rs6000_builtin_type): Missing break statement. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 29e5527..d8f3b7e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,7 @@ 2011-02-28 Michael Snyder + * 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 c52f960..bd8e12b 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);