add a token

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24315 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-11-12 00:11:30 +00:00
parent 164c378047
commit b7d08a50f5

View File

@ -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); }