blob: e3a6e095f5b9d01b066c0997d63e1bcc1243b4a2 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-csky-options "-mcpu=ck810f -O1 -mno-constpool" } */
/* Make sure that constant pools are not emitted by the compiler when
-mno-constpool is provided. */
void f (unsigned int *u, long long int *l, float *f, double *d)
{
*u = 0xdeadbeef;
*l = 0xcafef00dc0ffeeULL;
*f = 3.14159F;
*d = 2.718281828459;
}
/* { dg-final { scan-assembler-not "\\.long" } } */