diff options
author | Nick Clifton <nickc@redhat.com> | 2017-03-15 09:19:42 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2017-03-15 09:19:42 +0000 |
commit | 7cb7b948ce62831a999f88054a6b2d39afbe926e (patch) | |
tree | 913d571945b2355d8f80fa2465a13b17450da789 /gas | |
parent | cc7e96c25d59db0a5279da0a0ff36d61151f3021 (diff) | |
download | gdb-7cb7b948ce62831a999f88054a6b2d39afbe926e.zip gdb-7cb7b948ce62831a999f88054a6b2d39afbe926e.tar.gz gdb-7cb7b948ce62831a999f88054a6b2d39afbe926e.tar.bz2 |
Fix building riscv targets with gcc v6.3.1
* config/tc-riscv.c (riscv_pre_output_hook): Fix compile time
warning about discarding a const qualifier.
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) { |