URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [declspec-7.c] - Rev 816
Compare with Previous | Blame | View Log
/* Test declaration specifiers. Test checks on storage class specifiers that can be made at parse time rather than for each declarator. Note that __thread is tested in gcc.dg/tls/diag-*.c. */ /* Origin: Joseph Myers <jsm@polyomino.org.uk> */ /* { dg-do compile } */ /* { dg-options "" } */ /* Duplicate specifiers. */ inline inline void f0 (void), f1 (void); static static int a, /* { dg-error "error: duplicate 'static'" } */ b; extern extern int c, /* { dg-error "error: duplicate 'extern'" } */ d; typedef typedef int e, /* { dg-error "error: duplicate 'typedef'" } */ f; void h (void) { auto auto int p, /* { dg-error "error: duplicate 'auto'" } */ q; register register int r, /* { dg-error "error: duplicate 'register'" } */ s; } /* Multiple specifiers. */ static extern int x, /* { dg-error "error: multiple storage classes in declaration specifiers" } */ y; extern typedef long z, /* { dg-error "error: multiple storage classes in declaration specifiers" } */ w;