1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Remove unused tokens in the ll lexer.

Patch by Robin Eklind!

llvm-svn: 227442
This commit is contained in:
Sean Silva 2015-01-29 14:45:09 +00:00
parent 8c6f16709c
commit 2ca1edd2bb
2 changed files with 0 additions and 3 deletions

View File

@ -241,7 +241,6 @@ lltok::Kind LLLexer::LexToken() {
case ')': return lltok::rparen;
case ',': return lltok::comma;
case '*': return lltok::star;
case '\\': return lltok::backslash;
}
}

View File

@ -28,9 +28,7 @@ namespace lltok {
lbrace, rbrace, // { }
less, greater, // < >
lparen, rparen, // ( )
backslash, // \ (not /)
exclaim, // !
hash, // #
kw_x,
kw_true, kw_false,