diff options
| author | Quentin Colombet <qcolombet@apple.com> | 2016-03-08 00:57:31 +0000 |
|---|---|---|
| committer | Quentin Colombet <qcolombet@apple.com> | 2016-03-08 00:57:31 +0000 |
| commit | 287c6bb5713f3c09367141dc7d23d00d2cdc2f50 (patch) | |
| tree | f36109cca0296ce27640815084e9d75f0877700f /llvm/lib/CodeGen/MIRParser/MILexer.h | |
| parent | 89e9597a508e1ed4bfde08ee3f4769d80bd96174 (diff) | |
| download | bcm5719-llvm-287c6bb5713f3c09367141dc7d23d00d2cdc2f50.tar.gz bcm5719-llvm-287c6bb5713f3c09367141dc7d23d00d2cdc2f50.zip | |
[MIR] Teach the parser how to parse complex types of generic machine instructions.
By complex types, I mean aggregate or vector types.
llvm-svn: 262890
Diffstat (limited to 'llvm/lib/CodeGen/MIRParser/MILexer.h')
| -rw-r--r-- | llvm/lib/CodeGen/MIRParser/MILexer.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/MIRParser/MILexer.h b/llvm/lib/CodeGen/MIRParser/MILexer.h index ff54aa3554d..cf7282f5989 100644 --- a/llvm/lib/CodeGen/MIRParser/MILexer.h +++ b/llvm/lib/CodeGen/MIRParser/MILexer.h @@ -45,6 +45,8 @@ struct MIToken { rbrace, plus, minus, + lt, + gt, // Keywords kw_implicit, |

