builtin-has-attribute-4.c: Skip on 32-bit hppa*-*-hpux*.
[official-gcc.git] / gcc / testsuite / gcc.dg / pr15698-1.c
blobcbe613c4fd6858f247285a9dacde31d4ff114aed
1 /* Test diagnostics for old-style definition not matching prior
2 prototype are present and give correct location for that prototype
3 (bug 15698). Original test. */
4 /* { dg-do compile } */
5 /* { dg-options "-std=gnu99" } */
7 int foobar ();
9 int func (int blah)
11 char *rindex();
14 int foobar ()
16 return 0;
19 char *rindex(a, b)
20 register char *a, b; /* { dg-warning "argument 'a' doesn't match built-in prototype" } */
22 return 0;
25 /* { dg-prune-output "\\\[-Wbuiltin-declaration-mismatch]" } */