Fortran: fix dependency checks for inquiry refs [PR115039]
[official-gcc.git] / gcc / testsuite / gcc.target / csky / constpool-2.c
blobe3a6e095f5b9d01b066c0997d63e1bcc1243b4a2
1 /* { dg-do compile } */
2 /* { dg-csky-options "-mcpu=ck810f -O1 -mno-constpool" } */
4 /* Make sure that constant pools are not emitted by the compiler when
5 -mno-constpool is provided. */
7 void f (unsigned int *u, long long int *l, float *f, double *d)
9 *u = 0xdeadbeef;
10 *l = 0xcafef00dc0ffeeULL;
11 *f = 3.14159F;
12 *d = 2.718281828459;
15 /* { dg-final { scan-assembler-not "\\.long" } } */