diff options
| author | Evan Cheng <evan.cheng@apple.com> | 2007-05-15 01:23:24 +0000 |
|---|---|---|
| committer | Evan Cheng <evan.cheng@apple.com> | 2007-05-15 01:23:24 +0000 |
| commit | a32dee205f1ac0ccf55cf16a337bd2a655d43261 (patch) | |
| tree | 438caa340fdea097098464d501ed6d7a451d5f94 /llvm/utils/TableGen/FileLexer.l | |
| parent | 785276fcda4c00b05d60814c2455d6b60f95c5ce (diff) | |
| download | bcm5719-llvm-a32dee205f1ac0ccf55cf16a337bd2a655d43261.tar.gz bcm5719-llvm-a32dee205f1ac0ccf55cf16a337bd2a655d43261.zip | |
Added \!con(a,b) syntax to concatnate two dag fragments.
llvm-svn: 37063
Diffstat (limited to 'llvm/utils/TableGen/FileLexer.l')
| -rw-r--r-- | llvm/utils/TableGen/FileLexer.l | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/utils/TableGen/FileLexer.l b/llvm/utils/TableGen/FileLexer.l index cc6825f5e07..59bbdad7bf4 100644 --- a/llvm/utils/TableGen/FileLexer.l +++ b/llvm/utils/TableGen/FileLexer.l @@ -206,6 +206,7 @@ field { return FIELD; } let { return LET; } in { return IN; } +!con { return CONCATTOK; } !sra { return SRATOK; } !srl { return SRLTOK; } !shl { return SHLTOK; } |

