Merge reload-branch up to revision 101000
[official-gcc.git] / gcc / testsuite / gcc.dg / i386-regparm.c
blobe3cd8b090ffa3cfc3b8ed32a51ade8ad1ff86aa3
1 /* { dg-do compile { target i?86-*-* x86_64-*-* } } */
2 /* { dg-require-effective-target ilp32 } */
3 /* { dg-options "-W -Wall" } */
5 /* Verify that GCC correctly detects non-matching regparm attributes. */
6 int __attribute__((regparm(3))) f (void); /* { dg-error "previous" } */
8 int __attribute__((regparm(2))) f (void) { /* { dg-error "conflicting" } */
9 return 0;