diff options
author | Martin Sebor <msebor@redhat.com> | 2017-03-08 23:29:42 +0000 |
---|---|---|
committer | Martin Sebor <msebor@gcc.gnu.org> | 2017-03-08 16:29:42 -0700 |
commit | afd78f021389aaaeed1ddbb8ba3c55f444f1c3d6 (patch) | |
tree | c043b944f6c967ad34d3e8f20e59dbd473b1d552 /gcc/config/nds32 | |
parent | eebc5e2dde79cb6179ffa9bf19bfe12d5da8b3e3 (diff) | |
download | gcc-afd78f021389aaaeed1ddbb8ba3c55f444f1c3d6.zip gcc-afd78f021389aaaeed1ddbb8ba3c55f444f1c3d6.tar.gz gcc-afd78f021389aaaeed1ddbb8ba3c55f444f1c3d6.tar.bz2 |
PR target/79928 - nds32: misspelled diagnostic: not support -fpic
Verified by building an nds32be-elf cross-compiler.
gcc/ChangeLog
* config/nds32/nds32.c (nds32_option_override):
From-SVN: r245982
Diffstat (limited to 'gcc/config/nds32')
-rw-r--r-- | gcc/config/nds32/nds32.c | 2 |
1 files changed, 1 insertions, 1 deletions
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"); } |