mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-02 15:51:54 +00:00
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:
parent
0aa4423c8c
commit
4afce47e9b
@ -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; }
|
||||
|
Loading…
x
Reference in New Issue
Block a user