URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Go to most recent revision |
Details |
Compare with Previous |
View Log
Line No. |
Rev |
Author |
Line |
1 |
689 |
jeremybenn |
/* Test declaration specifiers. Test various checks on storage class
|
2 |
|
|
and function specifiers that depend on information about the
|
3 |
|
|
declaration, not just the specifiers. Test with no special
|
4 |
|
|
options. */
|
5 |
|
|
/* Origin: Joseph Myers <jsm@polyomino.org.uk> */
|
6 |
|
|
/* { dg-do compile } */
|
7 |
|
|
/* { dg-options "" } */
|
8 |
|
|
|
9 |
|
|
auto void f0 (void) {} /* { dg-warning "function definition declared 'auto'" } */
|
10 |
|
|
register void f1 (void) {} /* { dg-error "function definition declared 'register'" } */
|
11 |
|
|
typedef void f2 (void) {} /* { dg-error "function definition declared 'typedef'" } */
|
12 |
|
|
|
13 |
|
|
void f3 (auto int); /* { dg-error "storage class specified for unnamed parameter" } */
|
14 |
|
|
void f4 (extern int); /* { dg-error "storage class specified for unnamed parameter" } */
|
15 |
|
|
void f5 (register int);
|
16 |
|
|
void f6 (static int); /* { dg-error "storage class specified for unnamed parameter" } */
|
17 |
|
|
void f7 (typedef int); /* { dg-error "storage class specified for unnamed parameter" } */
|
18 |
|
|
|
19 |
|
|
auto int x; /* { dg-error "file-scope declaration of 'x' specifies 'auto'" } */
|
20 |
|
|
register int y; /* { dg-error "register name not specified for 'y'" } */
|
21 |
|
|
|
22 |
|
|
void h (void) { extern void x (void) {} } /* { dg-error "nested function 'x' declared 'extern'" } */
|
23 |
|
|
|
24 |
|
|
void
|
25 |
|
|
g (void)
|
26 |
|
|
{
|
27 |
|
|
void a; /* { dg-error "variable or field 'a' declared void" } */
|
28 |
|
|
const void b; /* { dg-error "variable or field 'b' declared void" } */
|
29 |
|
|
static void c; /* { dg-error "variable or field 'c' declared void" } */
|
30 |
|
|
}
|
31 |
|
|
|
32 |
|
|
void p;
|
33 |
|
|
const void p1;
|
34 |
|
|
extern void q;
|
35 |
|
|
extern const void q1;
|
36 |
|
|
static void r; /* { dg-error "variable or field 'r' declared void" } */
|
37 |
|
|
static const void r1; /* { dg-error "variable or field 'r1' declared void" } */
|
38 |
|
|
|
39 |
|
|
register void f8 (void); /* { dg-error "invalid storage class for function 'f8'" } */
|
40 |
|
|
|
41 |
|
|
void i (void) { auto void y (void) {} }
|
42 |
|
|
|
43 |
|
|
inline int main (void) { return 0; } /* { dg-warning "cannot inline function 'main'" } */
|
© copyright 1999-2024
OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.