]> granicus.if.org Git - clang/commitdiff
Spaces not tabs.
authorNeil Booth <neil@daikokuya.co.uk>
Wed, 29 Aug 2007 22:13:52 +0000 (22:13 +0000)
committerNeil Booth <neil@daikokuya.co.uk>
Wed, 29 Aug 2007 22:13:52 +0000 (22:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41582 91177308-0d34-0410-b5e6-96231b3b80d8

Lex/PPExpressions.cpp
Sema/SemaExpr.cpp

index 6793a0123ca47da91edf868466265a1b50e33e3c..48ec52af8cbf4590a3d933862f81ab9d506598bd 100644 (file)
@@ -169,7 +169,7 @@ static bool EvaluateValue(llvm::APSInt &Result, Token &PeekTok,
 
     // long long is a C99 feature.
     if (!PP.getLangOptions().C99 && !PP.getLangOptions().CPlusPlus0x
-       && Literal.isLongLong)
+        && Literal.isLongLong)
       PP.Diag(PeekTok, diag::ext_longlong);
 
     // Parse the integer literal into Result.
index 272fc6f93db244ca0fdac3c30b773e952b2fbcfe..0747bbc8b1c8485244a575ea213631c2b8fa47ed 100644 (file)
@@ -158,7 +158,7 @@ Action::ExprResult Sema::ParseNumericConstant(const Token &Tok) {
 
     // long long is a C99 feature.
     if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
-       Literal.isLongLong)
+        Literal.isLongLong)
       Diag(Tok.getLocation(), diag::ext_longlong);
 
     // Get the value in the widest-possible width.