From: Chris Lattner Date: Sat, 12 Nov 2005 00:11:30 +0000 (+0000) Subject: add a token X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b7d08a50f527aeb2b4203a74bbeecf294b27e5c1;p=oota-llvm.git add a token git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24315 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AsmParser/Lexer.l b/lib/AsmParser/Lexer.l index 2102a93cc29..a753133a8e8 100644 --- a/lib/AsmParser/Lexer.l +++ b/lib/AsmParser/Lexer.l @@ -210,6 +210,8 @@ pointersize { return POINTERSIZE; } 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 @@ double { llvmAsmlval.PrimType = Type::DoubleTy; return DOUBLE; } 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); }