blob: ce11faa8f863e797c5a096649e18ab5c861f309d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* Verify that 387 mathematical constants are recognized. */
/* { dg-do compile } */
/* { dg-require-effective-target ilp32 } */
/* { dg-options "-O2 -march=i686" } */
/* { dg-final { scan-assembler "fldpi" } } */
long double add_pi(long double x)
{
return x + 3.1415926535897932385128089594061862044L;
}
|