blob: 7334c972d4d5e52a1b6814e9ecf85cbed1d13ed4 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-require-effective-target ilp32 } */
/* { dg-options "-W -Wall" } */
/* Verify that GCC correctly detects non-matching regparm attributes. */
int __attribute__((regparm(3))) f (void); /* { dg-error "previous" } */
int __attribute__((regparm(2))) f (void) { /* { dg-error "conflicting" } */
return 0;
}