diff options
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/nds32/nds32.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c20fa94..3f97e16 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2017-03-08 Martin Sebor <msebor@redhat.com> + + PR target/79928 + * config/nds32/nds32.c (nds32_option_override): + 2017-03-08 Jakub Jelinek <jakub@redhat.com> PR c/79940 diff --git a/gcc/config/nds32/nds32.c b/gcc/config/nds32/nds32.c index 9313712..705d223 100644 --- a/gcc/config/nds32/nds32.c +++ b/gcc/config/nds32/nds32.c @@ -2704,7 +2704,7 @@ nds32_option_override (void) /* Currently, we don't support PIC code generation yet. */ if (flag_pic) - sorry ("not support -fpic"); + sorry ("position-independent code not supported"); } |