Generated files for 47484.

llvm-svn: 47485
This commit is contained in:
Dale Johannesen 2008-02-22 17:50:51 +00:00
parent a96eb3a1d8
commit 1d3737e5ed
3 changed files with 295 additions and 293 deletions

File diff suppressed because it is too large Load Diff

View File

@ -344,7 +344,7 @@
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
typedef union YYSTYPE typedef union YYSTYPE
#line 952 "/Volumes/Nanpura/mrv/llvm/lib/AsmParser/llvmAsmParser.y" #line 952 "/Volumes/MacOS9/gcc/llvm/lib/AsmParser/llvmAsmParser.y"
{ {
llvm::Module *ModuleVal; llvm::Module *ModuleVal;
llvm::Function *FunctionVal; llvm::Function *FunctionVal;

View File

@ -1234,7 +1234,8 @@ ParamAttr : ZEROEXT { $$ = ParamAttr::ZExt; }
| NOALIAS { $$ = ParamAttr::NoAlias; } | NOALIAS { $$ = ParamAttr::NoAlias; }
| BYVAL { $$ = ParamAttr::ByVal; } | BYVAL { $$ = ParamAttr::ByVal; }
| NEST { $$ = ParamAttr::Nest; } | NEST { $$ = ParamAttr::Nest; }
| ALIGN EUINT64VAL { $$ = $2 << 16; } | ALIGN EUINT64VAL { $$ =
ParamAttr::constructAlignmentFromInt($2); }
; ;
OptParamAttrs : /* empty */ { $$ = ParamAttr::None; } OptParamAttrs : /* empty */ { $$ = ParamAttr::None; }