diff options
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-riscv.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index ad745a9..fc50a3e 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2016-11-23 Kuan-Lin Chen <kuanlinchentw@gmail.com> + + * config/tc-riscv.c: Add missing break. + 2016-11-23 Alan Modra <amodra@gmail.com> * po/POTFILES.in: Regenerate. diff --git a/gas/config/tc-riscv.c b/gas/config/tc-riscv.c index 592c95a..b363867 100644 --- a/gas/config/tc-riscv.c +++ b/gas/config/tc-riscv.c @@ -1892,6 +1892,7 @@ md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED) case BFD_RELOC_8: fixP->fx_r_type = BFD_RELOC_RISCV_ADD8; fixP->fx_next->fx_r_type = BFD_RELOC_RISCV_SUB8; + break; default: /* This case is unreachable. */ |