Spaces not tabs.

llvm-svn: 41582
This commit is contained in:
Neil Booth 2007-08-29 22:13:52 +00:00
parent ac582c5ecb
commit 4a1ee0562d
2 changed files with 2 additions and 2 deletions

View 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.

View 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.