blob: 601688f64893cd7cf77dcbd5ad98dd958152d43a [file] [log] [blame]
/* { dg-do compile { target i?86-*-* } } */
/* { dg-skip-if "" { i?86-*-* } { "-m64" } { "" } } */
/* { 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;
}