OSDN Git Service

2005-02-15 Eric Christopher <echristo@redhat.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / i386-regparm.c
1 /* { dg-do compile { target i?86-*-* } } */
2 /* { dg-skip-if "" { i?86-*-* } { "-m64" } { "" } } */
3 /* { dg-options "-W -Wall" } */
4
5 /* Verify that GCC correctly detects non-matching regparm attributes.  */
6 int __attribute__((regparm(3))) f (void);  /* { dg-error "previous" } */
7
8 int __attribute__((regparm(2))) f (void) { /* { dg-error "conflicting" } */
9   return 0;
10 }