[cfe-commits] r57788 - /cfe/trunk/lib/Parse/Parser.cpp
Chris Lattner
sabre at nondot.org
Sun Oct 19 19:01:35 PDT 2008
Author: lattner
Date: Sun Oct 19 21:01:34 2008
New Revision: 57788
URL: http://llvm.org/viewvc/llvm-project?rev=57788&view=rev
Log:
fix indentation
Modified:
cfe/trunk/lib/Parse/Parser.cpp
Modified: cfe/trunk/lib/Parse/Parser.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Parse/Parser.cpp?rev=57788&r1=57787&r2=57788&view=diff
==============================================================================
--- cfe/trunk/lib/Parse/Parser.cpp (original)
+++ cfe/trunk/lib/Parse/Parser.cpp Sun Oct 19 21:01:34 2008
@@ -505,8 +505,9 @@
// 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
More information about the cfe-commits
mailing list