Regenerate

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28407 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-05-19 21:28:53 +00:00
parent 515906d106
commit 7546619743
5 changed files with 1439 additions and 1426 deletions

File diff suppressed because it is too large Load Diff

View File

@ -218,6 +218,7 @@ sideeffect { return SIDEEFFECT; }
cc { return CC_TOK; }
ccc { return CCC_TOK; }
csretcc { return CSRETCC_TOK; }
fastcc { return FASTCC_TOK; }
coldcc { return COLDCC_TOK; }

File diff suppressed because it is too large Load Diff

View File

@ -97,45 +97,46 @@ typedef union {
#define SIDEEFFECT 314
#define CC_TOK 315
#define CCC_TOK 316
#define FASTCC_TOK 317
#define COLDCC_TOK 318
#define RET 319
#define BR 320
#define SWITCH 321
#define INVOKE 322
#define UNWIND 323
#define UNREACHABLE 324
#define ADD 325
#define SUB 326
#define MUL 327
#define DIV 328
#define REM 329
#define AND 330
#define OR 331
#define XOR 332
#define SETLE 333
#define SETGE 334
#define SETLT 335
#define SETGT 336
#define SETEQ 337
#define SETNE 338
#define MALLOC 339
#define ALLOCA 340
#define FREE 341
#define LOAD 342
#define STORE 343
#define GETELEMENTPTR 344
#define PHI_TOK 345
#define CAST 346
#define SELECT 347
#define SHL 348
#define SHR 349
#define VAARG 350
#define EXTRACTELEMENT 351
#define INSERTELEMENT 352
#define SHUFFLEVECTOR 353
#define VAARG_old 354
#define VANEXT_old 355
#define CSRETCC_TOK 317
#define FASTCC_TOK 318
#define COLDCC_TOK 319
#define RET 320
#define BR 321
#define SWITCH 322
#define INVOKE 323
#define UNWIND 324
#define UNREACHABLE 325
#define ADD 326
#define SUB 327
#define MUL 328
#define DIV 329
#define REM 330
#define AND 331
#define OR 332
#define XOR 333
#define SETLE 334
#define SETGE 335
#define SETLT 336
#define SETGT 337
#define SETEQ 338
#define SETNE 339
#define MALLOC 340
#define ALLOCA 341
#define FREE 342
#define LOAD 343
#define STORE 344
#define GETELEMENTPTR 345
#define PHI_TOK 346
#define CAST 347
#define SELECT 348
#define SHL 349
#define SHR 350
#define VAARG 351
#define EXTRACTELEMENT 352
#define INSERTELEMENT 353
#define SHUFFLEVECTOR 354
#define VAARG_old 355
#define VANEXT_old 356
extern YYSTYPE llvmAsmlval;

View File

@ -981,7 +981,7 @@ Module *llvm::RunVMAsmParser(const char * AsmString, Module * M) {
%token TO DOTDOTDOT NULL_TOK UNDEF CONST INTERNAL LINKONCE WEAK APPENDING
%token OPAQUE NOT EXTERNAL TARGET TRIPLE ENDIAN POINTERSIZE LITTLE BIG ALIGN
%token DEPLIBS CALL TAIL ASM_TOK MODULE SIDEEFFECT
%token CC_TOK CCC_TOK FASTCC_TOK COLDCC_TOK
%token CC_TOK CCC_TOK CSRETCC_TOK FASTCC_TOK COLDCC_TOK
%type <UIntVal> OptCallingConv
// Basic Block Terminating Operators
@ -1054,6 +1054,7 @@ OptLinkage : INTERNAL { $$ = GlobalValue::InternalLinkage; } |
OptCallingConv : /*empty*/ { $$ = CallingConv::C; } |
CCC_TOK { $$ = CallingConv::C; } |
CSRETCC_TOK { $$ = CallingConv::CSRet; } |
FASTCC_TOK { $$ = CallingConv::Fast; } |
COLDCC_TOK { $$ = CallingConv::Cold; } |
CC_TOK EUINT64VAL {