aboutsummaryrefslogtreecommitdiff
path: root/ld/ldlex.l
diff options
context:
space:
mode:
authorSteve Chamberlain <steve@cygnus>1991-04-17 00:49:15 +0000
committerSteve Chamberlain <steve@cygnus>1991-04-17 00:49:15 +0000
commitfd846434f0502cee46643a03225e9543111efff9 (patch)
tree9b308eb89e4be13e2c15223a2f8629ea5c5794e3 /ld/ldlex.l
parent070aa81923459dd32e158095f243e99b02bfb579 (diff)
downloadgdb-fd846434f0502cee46643a03225e9543111efff9.zip
gdb-fd846434f0502cee46643a03225e9543111efff9.tar.gz
gdb-fd846434f0502cee46643a03225e9543111efff9.tar.bz2
Added keywords
FORCE_COMMON_ALLOCATION OUTPUT_FORMAT
Diffstat (limited to 'ld/ldlex.l')
-rw-r--r--ld/ldlex.l4
1 files changed, 3 insertions, 1 deletions
diff --git a/ld/ldlex.l b/ld/ldlex.l
index 613f356..82f6659 100644
--- a/ld/ldlex.l
+++ b/ld/ldlex.l
@@ -80,9 +80,11 @@ keyword_type keywords[] =
"INPUT",INPUT,
"DEFINED",DEFINED,
"CREATE_OBJECT_SYMBOLS",CREATE_OBJECT_SYMBOLS,
+"FORCE_COMMON_ALLOCATION",FORCE_COMMON_ALLOCATION,
"SECTIONS",SECTIONS,
"FILL",FILL,
"STARTUP",STARTUP,
+"OUTPUT_FORMAT",OUTPUT_FORMAT,
"HLL",HLL,
"SYSLIB",SYSLIB,
"FLOAT",FLOAT,
@@ -353,7 +355,7 @@ WHITE [ \t]+
"]" { RTOKEN(']');}
"[" { RTOKEN('[');}
":" { RTOKEN(':'); }
-";" { RTOKEN(';');}
+";" { RTOKEN('\;');}
"-" { RTOKEN('-');}