Commit 5ddf0258 by Jakub Jelinek Committed by Jakub Jelinek

i386.exp (check_effective_target_xop): Fix typo in builtin's name.

	* gcc.target/i386/i386.exp (check_effective_target_xop): Fix typo
	in builtin's name.

From-SVN: r153943
parent d79f3032
2009-11-05 Jakub Jelinek <jakub@redhat.com>
* gcc.target/i386/i386.exp (check_effective_target_xop): Fix typo
in builtin's name.
2009-11-04 Jason Merrill <jason@redhat.com>
PR c++/36912
......
......@@ -153,9 +153,9 @@ proc check_effective_target_xop { } {
typedef short __v8hi __attribute__ ((__vector_size__ (16)));
__m128i _mm_maccs_epi16(__m128i __A, __m128i __B, __m128i __C)
{
return (__m128i) __builtin_ia32_pmacssww ((__v8hi)__A,
(__v8hi)__B,
(__v8hi)__C);
return (__m128i) __builtin_ia32_vpmacssww ((__v8hi)__A,
(__v8hi)__B,
(__v8hi)__C);
}
} "-O2 -mxop" ]
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment