diff options
author | Alan Modra <amodra@gmail.com> | 2017-04-27 09:08:09 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2017-04-27 11:54:29 +0930 |
commit | a61d92b7bd4da998dd5d73e9205b4871f7c4825d (patch) | |
tree | a4e0720d2a685c4a678289967c1aa2b44170fed9 /gold/testsuite | |
parent | 7a81a73b2e5d00b76e15d97db7b8f0c9809ba1b7 (diff) | |
download | binutils-gdb-a61d92b7bd4da998dd5d73e9205b4871f7c4825d.tar.gz |
[GOLD] testsuite/plugin_section_order.c fix
* testsuite/plugin_section_order.c (onload): Add missing break.
Diffstat (limited to 'gold/testsuite')
-rw-r--r-- | gold/testsuite/plugin_section_order.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gold/testsuite/plugin_section_order.c b/gold/testsuite/plugin_section_order.c index dfb88f25f3c..789171de0f2 100644 --- a/gold/testsuite/plugin_section_order.c +++ b/gold/testsuite/plugin_section_order.c @@ -85,6 +85,7 @@ onload(struct ld_plugin_tv *tv) case LDPT_ALLOW_UNIQUE_SEGMENT_FOR_SECTIONS: allow_unique_segment_for_sections = *entry->tv_u.tv_allow_unique_segment_for_sections; + break; case LDPT_UNIQUE_SEGMENT_FOR_SECTIONS: unique_segment_for_sections = *entry->tv_u.tv_unique_segment_for_sections; |