aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-05-21 14:02:39 -0700
committerMichael Forney <mforney@mforney.org>2019-05-21 14:02:39 -0700
commit448e9cce6d8756a2cca1c389905aed96d97cfedc (patch)
tree6006cb2b70b3a85c7e9ca154bf2f70311aa9961e
parent732a27073509badbd23395e75f2578513fa9716c (diff)
downloadcproc-448e9cce6d8756a2cca1c389905aed96d97cfedc.tar.xz
Handle alternate keywords in the compiler itself
-rwxr-xr-xconfigure10
-rw-r--r--pp.c8
2 files changed, 8 insertions, 10 deletions
diff --git a/configure b/configure
index af9a3f5..c4203f5 100755
--- a/configure
+++ b/configure
@@ -139,16 +139,6 @@ static char *preprocesscmd[] = {
/* ignore attributes and extension markers */
"-D", "__attribute__(x)=",
"-D", "__extension__=",
-
- /* alternate keywords */
- "-D", "__alignof__=_Alignof",
- "-D", "__asm=__asm__",
- "-D", "__inline=inline",
- "-D", "__inline__=inline",
- "-D", "__signed=signed",
- "-D", "__signed__=signed",
- "-D", "__thread=_Thread_local",
- "-D", "__volatile__=volatile",
$defines};
static char *codegencmd[] = {"$DEFAULT_QBE", "-t", "$qbetarget"};
static char *assemblecmd[] = {"$DEFAULT_ASSEMBLER"};
diff --git a/pp.c b/pp.c
index 9584007..25409d1 100644
--- a/pp.c
+++ b/pp.c
@@ -26,8 +26,16 @@ keyword(struct token *tok)
{"_Noreturn", T_NORETURN},
{"_Static_assert", T_STATIC_ASSERT},
{"_Thread_local", T_THREAD_LOCAL},
+ {"__alignof__", T_ALIGNOF},
+ {"__asm", T__ASM__},
{"__asm__", T__ASM__},
+ {"__inline", TINLINE},
+ {"__inline__", TINLINE},
+ {"__signed", TSIGNED},
+ {"__signed__", TSIGNED},
+ {"__thread", T_THREAD_LOCAL},
{"__typeof__", T__TYPEOF__},
+ {"__volatile__", TVOLATILE},
{"auto", TAUTO},
{"break", TBREAK},
{"case", TCASE},