Add missing semicolumns in parser rules, those missing semicolumns

are required to compile with the latest Bison.

Patch by Samuel Tardieu!

llvm-svn: 57289
This commit is contained in:
Chris Lattner 2008-10-08 06:44:36 +00:00
parent 0aa4423c8c
commit 4afce47e9b

View File

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