blob: 99d3d5ffc793b06587c6968173296fa078baacb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* { dg-do compile { target { *-*-linux* && ia32 } } } */
/* { dg-options "-O2 -mandroid" } */
long double
foo (long double x)
{
return x * x;
}
/* { dg-final { scan-assembler-not "fldt" } } */
/* { dg-final { scan-assembler-not "call\[\\t \]*_?__multf3" } } */
|