aboutsummaryrefslogtreecommitdiffstats
path: root/utils/TableGen/FileLexer.l
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-08-04 04:50:57 +0000
committerChris Lattner <sabre@nondot.org>2003-08-04 04:50:57 +0000
commit40f71134b9fef0ca06c516f033cc9403394a913c (patch)
tree1fb65d1311706e34922d3f7e676129634ad3097b /utils/TableGen/FileLexer.l
parent5e2cb8b991cac2bbe38e275947f095dc8682dfc8 (diff)
downloadexternal_llvm-40f71134b9fef0ca06c516f033cc9403394a913c.zip
external_llvm-40f71134b9fef0ca06c516f033cc9403394a913c.tar.gz
external_llvm-40f71134b9fef0ca06c516f033cc9403394a913c.tar.bz2
Add initial support for a new 'dag' type
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7559 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/FileLexer.l')
-rw-r--r--utils/TableGen/FileLexer.l1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/TableGen/FileLexer.l b/utils/TableGen/FileLexer.l
index ad4bd77..8ab4006 100644
--- a/utils/TableGen/FileLexer.l
+++ b/utils/TableGen/FileLexer.l
@@ -154,6 +154,7 @@ bits { return BITS; }
string { return STRING; }
list { return LIST; }
code { return CODE; }
+dag { return DAG; }
class { return CLASS; }
def { return DEF; }