mirror of https://github.com/rui314/chibicc
Ignore const, volatile, auto, register, restrict or _Noreturn.
This commit is contained in:
parent
7ba6fe8d94
commit
b773554275
37
parse.c
37
parse.c
|
@ -353,7 +353,9 @@ static void push_tag_scope(Token *tok, Type *ty) {
|
|||
// | "typedef" | "static" | "extern"
|
||||
// | "signed" | "unsigned"
|
||||
// | struct-decl | union-decl | typedef-name
|
||||
// | enum-specifier)+
|
||||
// | enum-specifier
|
||||
// | "const" | "volatile" | "auto" | "register" | "restrict"
|
||||
// | "__restrict" | "__restrict__" | "_Noreturn")+
|
||||
//
|
||||
// The order of typenames in a type-specifier doesn't matter. For
|
||||
// example, `int long static` means the same as `static long int`.
|
||||
|
@ -405,6 +407,13 @@ static Type *declspec(Token **rest, Token *tok, VarAttr *attr) {
|
|||
continue;
|
||||
}
|
||||
|
||||
// These keywords are recognized but ignored.
|
||||
if (consume(&tok, tok, "const") || consume(&tok, tok, "volatile") ||
|
||||
consume(&tok, tok, "auto") || consume(&tok, tok, "register") ||
|
||||
consume(&tok, tok, "restrict") || consume(&tok, tok, "__restrict") ||
|
||||
consume(&tok, tok, "__restrict__") || consume(&tok, tok, "_Noreturn"))
|
||||
continue;
|
||||
|
||||
if (equal(tok, "_Alignas")) {
|
||||
if (!attr)
|
||||
error_tok(tok, "_Alignas is not allowed in this context");
|
||||
|
@ -593,10 +602,21 @@ static Type *type_suffix(Token **rest, Token *tok, Type *ty) {
|
|||
return ty;
|
||||
}
|
||||
|
||||
// declarator = "*"* ("(" ident ")" | "(" declarator ")" | ident) type-suffix
|
||||
static Type *declarator(Token **rest, Token *tok, Type *ty) {
|
||||
while (consume(&tok, tok, "*"))
|
||||
// pointers = ("*" ("const" | "volatile" | "restrict")*)*
|
||||
static Type *pointers(Token **rest, Token *tok, Type *ty) {
|
||||
while (consume(&tok, tok, "*")) {
|
||||
ty = pointer_to(ty);
|
||||
while (equal(tok, "const") || equal(tok, "volatile") || equal(tok, "restrict") ||
|
||||
equal(tok, "__restrict") || equal(tok, "__restrict__"))
|
||||
tok = tok->next;
|
||||
}
|
||||
*rest = tok;
|
||||
return ty;
|
||||
}
|
||||
|
||||
// declarator = pointers ("(" ident ")" | "(" declarator ")" | ident) type-suffix
|
||||
static Type *declarator(Token **rest, Token *tok, Type *ty) {
|
||||
ty = pointers(&tok, tok, ty);
|
||||
|
||||
if (equal(tok, "(")) {
|
||||
Token *start = tok;
|
||||
|
@ -614,12 +634,9 @@ static Type *declarator(Token **rest, Token *tok, Type *ty) {
|
|||
return ty;
|
||||
}
|
||||
|
||||
// abstract-declarator = "*"* ("(" abstract-declarator ")")? type-suffix
|
||||
// abstract-declarator = pointers ("(" abstract-declarator ")")? type-suffix
|
||||
static Type *abstract_declarator(Token **rest, Token *tok, Type *ty) {
|
||||
while (equal(tok, "*")) {
|
||||
ty = pointer_to(ty);
|
||||
tok = tok->next;
|
||||
}
|
||||
ty = pointers(&tok, tok, ty);
|
||||
|
||||
if (equal(tok, "(")) {
|
||||
Token *start = tok;
|
||||
|
@ -1095,6 +1112,8 @@ static bool is_typename(Token *tok) {
|
|||
static char *kw[] = {
|
||||
"void", "_Bool", "char", "short", "int", "long", "struct", "union",
|
||||
"typedef", "enum", "static", "extern", "_Alignas", "signed", "unsigned",
|
||||
"const", "volatile", "auto", "register", "restrict", "__restrict",
|
||||
"__restrict__", "_Noreturn",
|
||||
};
|
||||
|
||||
for (int i = 0; i < sizeof(kw) / sizeof(*kw); i++)
|
||||
|
|
|
@ -0,0 +1,17 @@
|
|||
#include "test.h"
|
||||
|
||||
_Noreturn noreturn_fn(int restrict x) {
|
||||
exit(0);
|
||||
}
|
||||
|
||||
int main() {
|
||||
{ volatile x; }
|
||||
{ int volatile x; }
|
||||
{ volatile int x; }
|
||||
{ volatile int volatile volatile x; }
|
||||
{ int volatile * volatile volatile x; }
|
||||
{ auto ** restrict __restrict __restrict__ const volatile *x; }
|
||||
|
||||
printf("OK\n");
|
||||
return 0;
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
#include "test.h"
|
||||
|
||||
int main() {
|
||||
{ const x; }
|
||||
{ int const x; }
|
||||
{ const int x; }
|
||||
{ const int const const x; }
|
||||
ASSERT(5, ({ const x = 5; x; }));
|
||||
ASSERT(8, ({ const x = 8; int *const y=&x; *y; }));
|
||||
ASSERT(6, ({ const x = 6; *(const * const)&x; }));
|
||||
|
||||
printf("OK\n");
|
||||
return 0;
|
||||
}
|
|
@ -5,3 +5,4 @@ int printf(char *fmt, ...);
|
|||
int sprintf(char *buf, char *fmt, ...);
|
||||
int strcmp(char *p, char *q);
|
||||
int memcmp(char *p, char *q, long n);
|
||||
void exit(int n);
|
||||
|
|
|
@ -134,7 +134,8 @@ static bool is_keyword(Token *tok) {
|
|||
"struct", "union", "short", "long", "void", "typedef", "_Bool",
|
||||
"enum", "static", "goto", "break", "continue", "switch", "case",
|
||||
"default", "extern", "_Alignof", "_Alignas", "do", "signed",
|
||||
"unsigned",
|
||||
"unsigned", "const", "volatile", "auto", "register", "restrict",
|
||||
"__restrict", "__restrict__", "_Noreturn",
|
||||
};
|
||||
|
||||
for (int i = 0; i < sizeof(kw) / sizeof(*kw); i++)
|
||||
|
|
Loading…
Reference in New Issue