blob: 4b9bcbe115271bd084c0295cec6503912e31180b (
plain)
1
2
3
4
5
6
7
8
9
|
/* { dg-do compile } */
/* { dg-options "-Os" } */
unsigned char check(float x)
{
return (0.0 < x);
}
/* { dg-final { scan-assembler-not "ldd" } } */
/* { dg-final { scan-assembler-not "std" } } */
|