diff options
author | H.J. Lu <hjl@gcc.gnu.org> | 2004-08-03 12:52:52 -0700 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2004-08-03 12:52:52 -0700 |
commit | f6bc51cbc49e3a9dd714a5291dcb29e928a6af74 (patch) | |
tree | 9360d9558cf36d04f4ecdef44f7ff349f4e11160 /gcc/config.gcc | |
parent | ed69811298e1f257486c59df4d62953809a83b18 (diff) | |
download | gcc-f6bc51cbc49e3a9dd714a5291dcb29e928a6af74.zip gcc-f6bc51cbc49e3a9dd714a5291dcb29e928a6af74.tar.gz gcc-f6bc51cbc49e3a9dd714a5291dcb29e928a6af74.tar.bz2 |
re PR target/16570 (missing _mm_malloc and _mm_free functions in xmmintrin.h)
gcc/
2004-08-03 H.J. Lu <hongjiu.lu@intel.com>
PR target/16570
* config.gcc (i[34567]86-*-* | x86_64-*-*): Add i386/t-gmm_malloc
to tmake_file.
(i[34567]86-*-linux*aout* | i[34567]86-*-linux*libc1): Likewise.
(i[34567]86-*-linux* | x86_64-*-linux*): Add i386/t-pmm_malloc
to tmake_file.
* config/i386/t-gmm_malloc: New file.
* config/i386/t-pmm_malloc: Likewise.
* config/i386/xmmintrin.h: Include <mm_malloc.h>.
2004-08-03 H.J. Lu <hongjiu.lu@intel.com>
Tanguy Fautr� <tfautre@pandora.be>
* config/i386/pmm_malloc.h: New file.
2004-08-03 Danny Smith <dannysmith@users.sourceforge.net>
* config/i386/gmm_malloc.h: New file.
gcc/testsuite/
2004-08-03 H.J. Lu <hongjiu.lu@intel.com>
PR target/16570
* gcc.dg/i386-sse-9.c: New test.
From-SVN: r85496
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 472f713..d20d3c5 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -2122,6 +2122,18 @@ am33_2.0-*-linux*) ;; esac +case ${target} in +i[34567]86-*-linux*aout* | i[34567]86-*-linux*libc1) + tmake_file="${tmake_file} i386/t-gmm_malloc" + ;; +i[34567]86-*-linux* | x86_64-*-linux*) + tmake_file="${tmake_file} i386/t-pmm_malloc" + ;; +i[34567]86-*-* | x86_64-*-*) + tmake_file="${tmake_file} i386/t-gmm_malloc" + ;; +esac + # Support for --with-cpu and related options (and a few unrelated options, # too). case ${with_cpu} in |