aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/i386-regparm.c
blob: e3cd8b090ffa3cfc3b8ed32a51ade8ad1ff86aa3 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile { target i?86-*-* x86_64-*-* } } */
/* { 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;
}