Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr83994.c
blobdc0b7cb44c448da06a76bffba78043f6e7a02efb
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -march=i686 -fpic -fstack-clash-protection" } */
3 /* { dg-require-effective-target ia32 } */
5 void f1 (char *);
7 __attribute__ ((regparm (3)))
8 int
9 f2 (int arg1, int arg2, int arg3)
11 char buf[16384];
12 f1 (buf);
13 f1 (buf);
14 return 0;