diff options
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-riscv.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 19245ec..e376e30 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2017-03-15 Nick Clifton <nickc@redhat.com> + + * config/tc-riscv.c (riscv_pre_output_hook): Fix compile time + warning about discarding a const qualifier. + 2017-03-02 Kuan-Lin Chen <rufus@andestech.com> * config/tc-riscv.h (HWARD2_USE_FIXED_ADVANCE_PC): New define. diff --git a/gas/config/tc-riscv.c b/gas/config/tc-riscv.c index 723ccba..79211f3 100644 --- a/gas/config/tc-riscv.c +++ b/gas/config/tc-riscv.c @@ -2077,7 +2077,7 @@ riscv_pre_output_hook (void) for (s = stdoutput->sections; s; s = s->next) for (frch = seg_info (s)->frchainP; frch; frch = frch->frch_next) { - const fragS *frag; + fragS *frag; for (frag = frch->frch_root; frag; frag = frag->fr_next) { |