Commit 7db6be6f by Uros Bizjak Committed by Uros Bizjak

re PR target/19235 (GCC generates SSE2 instructions for AthlonXP which doesn't support them.)

	PR target/19235
	* gcc.dg/pr19236-1.c: New test case.

From-SVN: r92855
parent 376a74d4
2005-01-03 Uros Bizjak <uros@kss-loka.si>
PR target/19235
* gcc.dg/pr19236-1.c: New test case.
2005-01-03 Hans-Peter Nilsson <hp@bitrange.com> 2005-01-03 Hans-Peter Nilsson <hp@bitrange.com>
PR rtl-optimization/12092 PR rtl-optimization/12092
......
/* PR target/19236 */
/* { dg-do compile { target i?86-*-* } } */
/* { dg-options "-ffast-math" } */
extern float log1pf (float);
extern double log1p (double);
float testf (float __x) {
return log1pf(1.0);
}
double test (double __x) {
return log1p(1.0);
}
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