PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / 20040622-2.c
blob0be320fa4e240b6b4743448b97a6d3e36a9343d2
1 /* { dg-do link } */
2 /* { dg-require-effective-target ptr32plus } */
3 /* This validates codegen for [r1+32760] on Darwin. */
4 void f(char x[32688], double *y, double *z) __attribute__((noinline));
5 void f(char x[32688], double *y, double *z) {}
6 main() {
7 char x[32688];
8 double y, z;
9 y = z = 3.0;
10 f(x, &y, &z);