1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

add a token

llvm-svn: 24315
This commit is contained in:
Chris Lattner 2005-11-12 00:11:30 +00:00
parent 01374bd923
commit 1e018a6238

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