regenerate
[oota-llvm.git] / lib / AsmParser / llvmAsmParser.y.cvs
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; }