aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbellard <bellard>2005-09-04 09:18:02 +0000
committerbellard <bellard>2005-09-04 09:18:02 +0000
commit8ba48f84fe10fd00786166f38abaa0190cb9326b (patch)
tree6309a5229687d8d7c8b61659413629784712027b
parent62c5a5466ab19ef2c9ce3d88289549f19ae8fcb8 (diff)
downloadtinycc-8ba48f84fe10fd00786166f38abaa0190cb9326b.tar.gz
tinycc-8ba48f84fe10fd00786166f38abaa0190cb9326b.tar.bz2
fastcall keywords
-rw-r--r--tcctok.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/tcctok.h b/tcctok.h
index 032d947..c88dcc9 100644
--- a/tcctok.h
+++ b/tcctok.h
@@ -101,6 +101,9 @@
DEF(TOK_STDCALL1, "stdcall")
DEF(TOK_STDCALL2, "__stdcall")
DEF(TOK_STDCALL3, "__stdcall__")
+ DEF(TOK_FASTCALL1, "fastcall")
+ DEF(TOK_FASTCALL2, "__fastcall")
+ DEF(TOK_FASTCALL3, "__fastcall__")
DEF(TOK_DLLEXPORT, "dllexport")
DEF(TOK_NORETURN1, "noreturn")
DEF(TOK_NORETURN2, "__noreturn__")