diff options
author | Michael Forney <mforney@mforney.org> | 2019-05-21 14:02:39 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-05-21 14:02:39 -0700 |
commit | 448e9cce6d8756a2cca1c389905aed96d97cfedc (patch) | |
tree | 6006cb2b70b3a85c7e9ca154bf2f70311aa9961e | |
parent | 732a27073509badbd23395e75f2578513fa9716c (diff) | |
download | cproc-448e9cce6d8756a2cca1c389905aed96d97cfedc.tar.xz |
Handle alternate keywords in the compiler itself
-rwxr-xr-x | configure | 10 | ||||
-rw-r--r-- | pp.c | 8 |
2 files changed, 8 insertions, 10 deletions
@@ -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"}; @@ -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}, |