diff options
author | Chris Lattner <sabre@nondot.org> | 2001-07-08 19:03:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-07-08 19:03:27 +0000 |
commit | 71496b3b50cfcba84eb4acd988ce88a4463e4515 (patch) | |
tree | bc0590b1a998d42ac95c3671c79d993030e193e1 /lib/AsmParser/Lexer.cpp | |
parent | 72f1e9929a086346d4f8a8105f30ff1ac78f691b (diff) |
Moved Cast from being a Unary instruction to being an "Other" instruction
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser/Lexer.cpp')
-rw-r--r-- | lib/AsmParser/Lexer.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/AsmParser/Lexer.cpp b/lib/AsmParser/Lexer.cpp index 7e2191b692..cf37530b2b 100644 --- a/lib/AsmParser/Lexer.cpp +++ b/lib/AsmParser/Lexer.cpp @@ -318,9 +318,9 @@ static yyconst short int yy_acclist[114] = 59, 58, 59, 58, 59, 58, 59, 58, 59, 58, 59, 58, 59, 58, 59, 58, 59, 58, 59, 58, 59, 58, 59, 58, 59, 58, 59, 51, 50, 55, - 54, 53, 1, 9, 41, 26, 52, 50, 56, 29, - 32, 3, 16, 31, 24, 27, 33, 40, 30, 11, - 28, 25, 45, 46, 18, 4, 22, 17, 10, 2, + 54, 53, 1, 9, 41, 28, 52, 50, 56, 29, + 32, 3, 16, 31, 24, 25, 33, 40, 30, 11, + 26, 27, 45, 46, 18, 4, 22, 17, 10, 2, 5, 20, 23, 12, 35, 39, 37, 38, 36, 34, 14, 47, 13, 19, 44, 21, 43, 42, 15, 6, @@ -980,23 +980,23 @@ YY_RULE_SETUP YY_BREAK case 25: YY_RULE_SETUP -#line 115 "Lexer.l" -{ RET_TOK(UnaryOpVal, Cast, CAST); } +#line 116 "Lexer.l" +{ return PHI; } YY_BREAK case 26: YY_RULE_SETUP #line 117 "Lexer.l" -{ return TO; } +{ return CALL; } YY_BREAK case 27: YY_RULE_SETUP #line 118 "Lexer.l" -{ return PHI; } +{ return CAST; } YY_BREAK case 28: YY_RULE_SETUP #line 119 "Lexer.l" -{ return CALL; } +{ return TO; } YY_BREAK case 29: YY_RULE_SETUP |