Add missing semicolumns in parser rules, those missing semicolumns
authorChris Lattner <sabre@nondot.org>
Wed, 8 Oct 2008 06:44:36 +0000 (06:44 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 8 Oct 2008 06:44:36 +0000 (06:44 +0000)
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

lib/AsmParser/llvmAsmParser.y

index e43c2859dbf6534d66b111174f379d9466f48b6d..9dc070230d81da97880d01007266518b1c7ab699 100644 (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; }