summaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
Diffstat (limited to 'binutils')
-rw-r--r--binutils/ChangeLog5
-rw-r--r--binutils/coffdump.c1
-rw-r--r--binutils/stabs.c1
3 files changed, 7 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index c40ceda1181..bef5ec0a2ac 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,8 @@
+2016-10-06 Alan Modra <amodra@gmail.com>
+
+ * coffdump.c (dump_coff_where): Add missing break.
+ * stabs.c (stab_xcoff_builtin_type): Likewise.
+
2016-09-29 Alan Modra <amodra@gmail.com>
* readelf.c (process_arch_specific): Call process_power_specific
diff --git a/binutils/coffdump.c b/binutils/coffdump.c
index e9aa76fcf78..640445830de 100644
--- a/binutils/coffdump.c
+++ b/binutils/coffdump.c
@@ -267,6 +267,7 @@ dump_coff_where (struct coff_where *p)
break;
case coff_where_strtag:
printf ("STRTAG");
+ break;
case coff_where_entag:
printf ("ENTAG");
break;
diff --git a/binutils/stabs.c b/binutils/stabs.c
index aebde7afe97..d209094d031 100644
--- a/binutils/stabs.c
+++ b/binutils/stabs.c
@@ -3432,6 +3432,7 @@ stab_xcoff_builtin_type (void *dhandle, struct stab_handle *info,
case 9:
name = "unsigned";
rettype = debug_make_int_type (dhandle, 4, TRUE);
+ break;
case 10:
name = "unsigned long";
rettype = debug_make_int_type (dhandle, 4, TRUE);