diff options
author | H.J. Lu <hjl@gcc.gnu.org> | 2007-02-23 01:34:34 -0800 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2007-02-23 01:34:34 -0800 |
commit | 95764a8f6e0e48600168618f6f99233654a6ac8e (patch) | |
tree | ae5c1c741b3a6f7795ec88f1bc08da3fae8f21e5 | |
parent | c0729306a62169f2a4fae2a5c16e83d8a485f746 (diff) | |
download | gcc-95764a8f6e0e48600168618f6f99233654a6ac8e.zip gcc-95764a8f6e0e48600168618f6f99233654a6ac8e.tar.gz gcc-95764a8f6e0e48600168618f6f99233654a6ac8e.tar.bz2 |
i386.c (bdesc_1arg): Initialize IX86_BUILTIN_MOVSHDUP and IX86_BUILTIN_MOVSLDUP with...
2007-02-23 H.J. Lu <hongjiu.lu@intel.com>
* config/i386/i386.c (bdesc_1arg): Initialize
IX86_BUILTIN_MOVSHDUP and IX86_BUILTIN_MOVSLDUP with
"__builtin_ia32_movshdup" and "__builtin_ia32_movsldup".
(ix86_init_mmx_sse_builtins): Remove IX86_BUILTIN_MOVSHDUP
and IX86_BUILTIN_MOVSLDUP.
From-SVN: r122254
-rw-r--r-- | gcc/ChangeLog | 10 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 10 |
2 files changed, 11 insertions, 9 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index adedaa7..90a2abc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,7 +1,15 @@ +2007-02-23 H.J. Lu <hongjiu.lu@intel.com> + + * config/i386/i386.c (bdesc_1arg): Initialize + IX86_BUILTIN_MOVSHDUP and IX86_BUILTIN_MOVSLDUP with + "__builtin_ia32_movshdup" and "__builtin_ia32_movsldup". + (ix86_init_mmx_sse_builtins): Remove IX86_BUILTIN_MOVSHDUP + and IX86_BUILTIN_MOVSLDUP. + 2007-02-22 Paolo Bonzini <bonzini@gnu.org> PR rtl-optimization/30841 - * fwprop.c (propagate_rtx_1): Accept a VOIDmode replacement address. + * fwprop.c (propagate_rtx_1): Accept a VOIDmode replacement address. 2007-02-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 8ad98d8..e0da85a 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -16490,8 +16490,8 @@ static const struct builtin_description bdesc_1arg[] = { MASK_SSE2, CODE_FOR_sse2_cvttps2dq, 0, IX86_BUILTIN_CVTTPS2DQ, 0, 0 }, /* SSE3 */ - { MASK_SSE3, CODE_FOR_sse3_movshdup, 0, IX86_BUILTIN_MOVSHDUP, 0, 0 }, - { MASK_SSE3, CODE_FOR_sse3_movsldup, 0, IX86_BUILTIN_MOVSLDUP, 0, 0 }, + { MASK_SSE3, CODE_FOR_sse3_movshdup, "__builtin_ia32_movshdup", IX86_BUILTIN_MOVSHDUP, 0, 0 }, + { MASK_SSE3, CODE_FOR_sse3_movsldup, "__builtin_ia32_movsldup", IX86_BUILTIN_MOVSLDUP, 0, 0 }, /* SSSE3 */ { MASK_SSSE3, CODE_FOR_absv16qi2, "__builtin_ia32_pabsb128", IX86_BUILTIN_PABSB128, 0, 0 }, @@ -17141,12 +17141,6 @@ ix86_init_mmx_sse_builtins (void) def_builtin (MASK_SSE3, "__builtin_ia32_mwait", void_ftype_unsigned_unsigned, IX86_BUILTIN_MWAIT); - def_builtin (MASK_SSE3, "__builtin_ia32_movshdup", - v4sf_ftype_v4sf, - IX86_BUILTIN_MOVSHDUP); - def_builtin (MASK_SSE3, "__builtin_ia32_movsldup", - v4sf_ftype_v4sf, - IX86_BUILTIN_MOVSLDUP); def_builtin (MASK_SSE3, "__builtin_ia32_lddqu", v16qi_ftype_pcchar, IX86_BUILTIN_LDDQU); |