Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / regparm.c
blob4cfd110206b58f228cca8051fc12c0005f2a6757
1 /* { dg-do compile } */
2 /* { dg-require-effective-target ia32 } */
3 /* { dg-options "-W -Wall" } */
5 /* Verify that GCC correctly detects non-matching regparm attributes. */
6 int __attribute__((regparm(3))) f (void); /* { dg-message "note: previous" } */
8 int __attribute__((regparm(2))) f (void) { /* { dg-error "conflicting" } */
9 return 0;