summaryrefslogtreecommitdiff
path: root/special-symbols.h
diff options
context:
space:
mode:
authorMatthias Benkard <mulk@minimulk.mst-plus>2008-08-24 11:51:35 +0200
committerMatthias Benkard <mulk@minimulk.mst-plus>2008-08-24 11:51:35 +0200
commit1560780b5fad554f12ce3964854bd474da1048f8 (patch)
treeccd5432593ff0623e5e83c9cf3b0cc79e08bc9ee /special-symbols.h
parent8e704379e8655c2a59200042894fe55d0d82f279 (diff)
MLKLexicalContext: Add -functionIsInline:.
Diffstat (limited to 'special-symbols.h')
-rw-r--r--special-symbols.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/special-symbols.h b/special-symbols.h
index d7e7351..806c758 100644
--- a/special-symbols.h
+++ b/special-symbols.h
@@ -58,6 +58,10 @@ static MLKSymbol *LOAD_TOPLEVEL;
static MLKSymbol *LOAD;
static MLKSymbol *EXECUTE;
static MLKSymbol *MULTIPLE_VALUE_CALL;
+static MLKSymbol *INLINE;
+static MLKSymbol *NOTINLINE;
+static MLKSymbol *SPECIAL;
+static MLKSymbol *LEXICAL;
static void
@@ -99,6 +103,10 @@ ensure_symbols ()
_LAMBDA = [sys intern:@"%LAMBDA"];
V_INITP = [sys intern:@"*SYSTEM-INITIALISED-P*"];
MULTIPLE_VALUE_CALL = [cl intern:@"MULTIPLE-VALUE-CALL"];
+ INLINE = [cl intern:@"INLINE"];
+ NOTINLINE = [cl intern:@"NOTINLINE"];
+ SPECIAL = [cl intern:@"INLINE"];
+ LEXICAL = [sys intern:@"NOTINLINE"];
COMPILE_TOPLEVEL = [keyword intern:@"COMPILE-TOPLEVEL"];
COMPILE = [cl intern:@"COMPILE"];