diff options
author | Kito Cheng <kito.cheng@gmail.com> | 2018-05-13 06:52:02 +0000 |
---|---|---|
committer | Chung-Ju Wu <jasonwucj@gcc.gnu.org> | 2018-05-13 06:52:02 +0000 |
commit | 2f2ebf951ba2f5f85c53213e0756756ce45bd58f (patch) | |
tree | 3722423bf0cde444bffc92cb2c0f7ea0c66aa91d /gcc/config.gcc | |
parent | 7c32ef413a661d53de9a90d29b5253bf98e6af82 (diff) | |
download | gcc-2f2ebf951ba2f5f85c53213e0756756ce45bd58f.zip gcc-2f2ebf951ba2f5f85c53213e0756756ce45bd58f.tar.gz gcc-2f2ebf951ba2f5f85c53213e0756756ce45bd58f.tar.bz2 |
[NDS32] Implment n10 pipeline.
gcc/
* config.gcc (nds32*-*-*): Check that n10/d10 are valid to --with-cpu.
* config/nds32/nds32-n10.md: New file.
* config/nds32/nds32-opts.h (nds32_cpu_type): Add CPU_N10.
* config/nds32/nds32-pipelines-auxiliary.c: Implementation for n10
pipeline.
* config/nds32/nds32-protos.h: More declarations for n10 pipeline.
* config/nds32/nds32-utils.c: More implementations for n10 pipeline.
* config/nds32/nds32.md (pipeline_model): Add n10.
* config/nds32/nds32.opt (mcpu): Support n10 pipeline cpus.
* config/nds32/pipelines.md: Include n10 settings.
Co-Authored-By: Chung-Ju Wu <jasonwucj@gmail.com>
From-SVN: r260207
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index fec118c..b729f3b 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -4367,11 +4367,11 @@ case "${target}" in "") with_cpu=n9 ;; - n6 | n7 | n8 | e8 | s8 | n9) + n6 | n7 |n8 | e8 | s8 | n9 | n10 | d10) # OK ;; *) - echo "Cannot accept --with-cpu=$with_cpu, available values are: n6 n7 n8 e8 s8 n9" 1>&2 + echo "Cannot accept --with-cpu=$with_cpu, available values are: n6 n7 n8 e8 s8 n9 n10 d10" 1>&2 exit 1 ;; esac |