diff options
author | Tanya Lattner <tonic@nondot.org> | 2008-10-08 16:56:22 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2008-10-08 16:56:22 +0000 |
commit | 29a8f64a62eb44d866d880b64984b221f7587b6b (patch) | |
tree | 72125f3209c9e0d509667463c5faac9742711845 | |
parent | 778ecdb7625b0f97c323156f6cf521649f0b0f4c (diff) |
Merge from mainline.
Add missing semicolumns in parser rules, those missing semicolumns
are required to compile with the latest Bison.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_24@57297 91177308-0d34-0410-b5e6-96231b3b80d8
-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 e43c2859db..9dc070230d 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; } |