regenerate

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57290 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2008-10-08 06:44:45 +00:00
parent cd16843499
commit 9fc4da40ef
3 changed files with 310 additions and 310 deletions

File diff suppressed because it is too large Load Diff

View File

@ -360,7 +360,7 @@
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
typedef union YYSTYPE typedef union YYSTYPE
#line 974 "/cvs/llvm/lib/AsmParser/llvmAsmParser.y" #line 974 "/Users/sabre/llvm/lib/AsmParser/llvmAsmParser.y"
{ {
llvm::Module *ModuleVal; llvm::Module *ModuleVal;
llvm::Function *FunctionVal; llvm::Function *FunctionVal;
@ -408,7 +408,7 @@ typedef union YYSTYPE
llvm::ICmpInst::Predicate IPredicate; llvm::ICmpInst::Predicate IPredicate;
llvm::FCmpInst::Predicate FPredicate; llvm::FCmpInst::Predicate FPredicate;
} }
/* Line 1489 of yacc.c. */ /* Line 1529 of yacc.c. */
#line 413 "llvmAsmParser.tab.h" #line 413 "llvmAsmParser.tab.h"
YYSTYPE; YYSTYPE;
# define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define yystype YYSTYPE /* obsolescent; will be withdrawn */

View File

@ -1296,9 +1296,9 @@ FuncAttr : NORETURN { $$ = Attribute::NoReturn; }
| SIGNEXT { $$ = Attribute::SExt; } | SIGNEXT { $$ = Attribute::SExt; }
| READNONE { $$ = Attribute::ReadNone; } | READNONE { $$ = Attribute::ReadNone; }
| READONLY { $$ = Attribute::ReadOnly; } | READONLY { $$ = Attribute::ReadOnly; }
| NOINLINE { $$ = Attribute::NoInline } | NOINLINE { $$ = Attribute::NoInline; }
| ALWAYSINLINE { $$ = Attribute::AlwaysInline } | ALWAYSINLINE { $$ = Attribute::AlwaysInline; }
| OPTSIZE { $$ = Attribute::OptimizeForSize } | OPTSIZE { $$ = Attribute::OptimizeForSize; }
; ;
OptFuncAttrs : /* empty */ { $$ = Attribute::None; } OptFuncAttrs : /* empty */ { $$ = Attribute::None; }