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
This commit is contained in:
Uros Bizjak 2005-01-03 16:56:16 +01:00 committed by Uros Bizjak
parent 376a74d497
commit 7db6be6f9b
2 changed files with 18 additions and 0 deletions

View File

@ -1,3 +1,7 @@
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>
PR rtl-optimization/12092

View File

@ -0,0 +1,14 @@
/* 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);
}