]> granicus.if.org Git - clang/commitdiff
fix indentation
authorChris Lattner <sabre@nondot.org>
Mon, 20 Oct 2008 02:01:34 +0000 (02:01 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 20 Oct 2008 02:01:34 +0000 (02:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@57788 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Parse/Parser.cpp

index fa4bdfafb74b4b9e125b7e7ab8ff95602dae8358..1b3adb95c0c4623c7666ba7e0544f1e90816024a 100644 (file)
@@ -505,8 +505,9 @@ Parser::DeclTy *Parser::ParseFunctionDefinition(Declarator &D) {
   // declaration-specifiers are completely optional in the grammar.
   if (getLang().ImplicitInt && D.getDeclSpec().getParsedSpecifiers() == 0) {
     const char *PrevSpec;
-    D.getMutableDeclSpec().SetTypeSpecType(DeclSpec::TST_int, D.getIdentifierLoc(),
-                                    PrevSpec);
+    D.getMutableDeclSpec().SetTypeSpecType(DeclSpec::TST_int,
+                                           D.getIdentifierLoc(),
+                                           PrevSpec);
   }
 
   // If this declaration was formed with a K&R-style identifier list for the