diff options
author | Chris Lattner <sabre@nondot.org> | 2008-10-08 06:44:36 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-10-08 06:44:36 +0000 |
commit | cd168434995d0366e6e95ef3efb8e782a3aad3a2 (patch) | |
tree | 88412ef6216e99cec0ea98de13338cb9ca10b723 /lib | |
parent | de17ddc65fea8f1a113c825552fc4b2a645f4957 (diff) | |
download | external_llvm-cd168434995d0366e6e95ef3efb8e782a3aad3a2.zip external_llvm-cd168434995d0366e6e95ef3efb8e782a3aad3a2.tar.gz external_llvm-cd168434995d0366e6e95ef3efb8e782a3aad3a2.tar.bz2 |
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
Diffstat (limited to 'lib')
-rw-r--r-- | lib/AsmParser/llvmAsmParser.y | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/AsmParser/llvmAsmParser.y b/lib/AsmParser/llvmAsmParser.y index e43c285..9dc0702 100644 --- a/lib/AsmParser/llvmAsmParser.y +++ b/lib/AsmParser/llvmAsmParser.y @@ -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; } |