aboutsummaryrefslogtreecommitdiff
path: root/lib/Parse/Parser.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-10-20 02:01:34 +0000
committerChris Lattner <sabre@nondot.org>2008-10-20 02:01:34 +0000
commit31c286803c60c59d314525e047d0e72f9a1cb55b (patch)
treea38ce5daa8bf6cd27045ccf92420f3b18c3e3d0d /lib/Parse/Parser.cpp
parent7c186be76786e6b744b29b0eeda52cf74db865ab (diff)
fix indentation
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@57788 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Parse/Parser.cpp')
-rw-r--r--lib/Parse/Parser.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Parse/Parser.cpp b/lib/Parse/Parser.cpp
index fa4bdfafb7..1b3adb95c0 100644
--- a/lib/Parse/Parser.cpp
+++ b/lib/Parse/Parser.cpp
@@ -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