mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-25 20:59:51 +00:00
Add missing semicolumns in parser rules, those missing semicolumns
are required to compile with the latest Bison. Patch by Samuel Tardieu! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57289 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
de17ddc65f
commit
cd16843499
@ -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…
Reference in New Issue
Block a user