aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog5
-rw-r--r--ld/lexsup.c3
2 files changed, 7 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 3660d87..40d6c14 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,5 +1,10 @@
2016-10-06 Alan Modra <amodra@gmail.com>
+ * lexsup.c: Spell fall through comments consistently and add
+ missing fall through comments.
+
+2016-10-06 Alan Modra <amodra@gmail.com>
+
* plugin.c (asymbol_from_plugin_symbol): Avoid compiler warning
by adding return.
diff --git a/ld/lexsup.c b/ld/lexsup.c
index 294c4b2..d39f848 100644
--- a/ld/lexsup.c
+++ b/ld/lexsup.c
@@ -1280,7 +1280,7 @@ parse_args (unsigned argc, char **argv)
break;
case OPTION_TASK_LINK:
link_info.task_link = TRUE;
- /* Fall through - do an implied -r option. */
+ /* Fall through. */
case OPTION_UR:
if (bfd_link_pic (&link_info))
einfo (_("%P%F: -r and %s may not be used together\n"),
@@ -1619,6 +1619,7 @@ parse_args (unsigned argc, char **argv)
break;
case dynamic_list_data:
link_info.dynamic_data = TRUE;
+ /* Fall through. */
case dynamic_list:
link_info.dynamic = TRUE;
break;