diff options
author | David Edelsohn <edelsohn@gnu.org> | 2007-08-31 05:26:38 +0000 |
---|---|---|
committer | Revital Eres <revitale@gcc.gnu.org> | 2007-08-31 05:26:38 +0000 |
commit | 960386232ce5d65c424187d6987c2ebf86df4785 (patch) | |
tree | f6b30b9a0ef62545c6daf229e0c8c8eff0aa2a72 /gcc/config.gcc | |
parent | 6e03b280b00030909b9b8204d6b151ad8060d77e (diff) | |
download | gcc-960386232ce5d65c424187d6987c2ebf86df4785.zip gcc-960386232ce5d65c424187d6987c2ebf86df4785.tar.gz gcc-960386232ce5d65c424187d6987c2ebf86df4785.tar.bz2 |
Support for PowerPC 750CL paired-single instructions
Co-Authored-By: Revital Eres <eres@il.ibm.com>
From-SVN: r127954
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 6665eb7..9f6c026 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -312,7 +312,7 @@ mips*-*-*) ;; powerpc*-*-*) cpu_type=rs6000 - extra_headers="ppc-asm.h altivec.h spe.h ppu_intrinsics.h" + extra_headers="ppc-asm.h altivec.h spe.h ppu_intrinsics.h paired.h" need_64bit_hwint=yes case x$with_cpu in xpowerpc64|xdefault64|x6[23]0|x970|xG5|xpower[3456]|xpower6x|xrs64a) @@ -1936,6 +1936,11 @@ powerpc-*-linux*spe*) extra_options="${extra_options} rs6000/sysv4.opt" tmake_file="rs6000/t-fprules rs6000/t-fprules-softfp soft-fp/t-softfp rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm" ;; +powerpc-*-linux*paired*) + tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/750cl.h" + extra_options="${extra_options} rs6000/sysv4.opt" + tmake_file="rs6000/t-fprules rs6000/t-fprules-softfp soft-fp/t-softfp rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm" + ;; powerpc-*-linux*) tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h" extra_options="${extra_options} rs6000/sysv4.opt" |