Changes in directory llvm/lib/AsmParser:
Lexer.l updated: 1.65 -> 1.66 --- Log message: add a token --- Diffs of the changes: (+2 -1) Lexer.l | 3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) Index: llvm/lib/AsmParser/Lexer.l diff -u llvm/lib/AsmParser/Lexer.l:1.65 llvm/lib/AsmParser/Lexer.l:1.66 --- llvm/lib/AsmParser/Lexer.l:1.65 Sat Nov 5 03:21:28 2005 +++ llvm/lib/AsmParser/Lexer.l Fri Nov 11 18:11:30 2005 @@ -210,6 +210,8 @@ little { return LITTLE; } big { return BIG; } volatile { return VOLATILE; } +align { return ALIGN; } +section { return SECTION; } cc { return CC_TOK; } ccc { return CCC_TOK; } @@ -231,7 +233,6 @@ label { llvmAsmlval.PrimType = Type::LabelTy ; return LABEL; } type { return TYPE; } opaque { return OPAQUE; } -align { return ALIGN; } add { RET_TOK(BinaryOpVal, Add, ADD); } sub { RET_TOK(BinaryOpVal, Sub, SUB); } _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits