From: Mike Stump Date: Tue, 14 Apr 2009 18:24:37 +0000 (+0000) Subject: Fixup whitespacing. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aa771a838a8f39633947ccc597e11d57e2839089;p=clang Fixup whitespacing. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69055 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Basic/ConvertUTF.c b/lib/Basic/ConvertUTF.c index 49430471c4..e5dd3e6bf5 100644 --- a/lib/Basic/ConvertUTF.c +++ b/lib/Basic/ConvertUTF.c @@ -354,7 +354,7 @@ ConversionResult ConvertUTF8toUTF32 ( result = sourceExhausted; break; } /* Do this check whether lenient or strict */ - if (! isLegalUTF8(source, extraBytesToRead+1)) { + if (!isLegalUTF8(source, extraBytesToRead+1)) { result = sourceIllegal; break; } @@ -469,7 +469,7 @@ ConversionResult ConvertUTF8toUTF16 ( result = sourceExhausted; break; } /* Do this check whether lenient or strict */ - if (! isLegalUTF8(source, extraBytesToRead+1)) { + if (!isLegalUTF8(source, extraBytesToRead+1)) { result = sourceIllegal; break; } diff --git a/lib/CodeGen/CGExpr.cpp b/lib/CodeGen/CGExpr.cpp index 1db3b6ebc0..bf862e72c3 100644 --- a/lib/CodeGen/CGExpr.cpp +++ b/lib/CodeGen/CGExpr.cpp @@ -631,7 +631,7 @@ LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) { if (VD && (VD->isBlockVarDecl() || isa(VD) || isa(VD))) { LValue LV; - bool GCable = VD->hasLocalStorage() && ! VD->hasAttr(); + bool GCable = VD->hasLocalStorage() && !VD->hasAttr(); if (VD->hasExternalStorage()) { LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD), E->getType().getCVRQualifiers(), diff --git a/lib/Parse/ParseExpr.cpp b/lib/Parse/ParseExpr.cpp index ebba576643..20a8359d1d 100644 --- a/lib/Parse/ParseExpr.cpp +++ b/lib/Parse/ParseExpr.cpp @@ -1333,7 +1333,7 @@ Parser::OwningExprResult Parser::ParseBlockLiteralExpression() { } // Inform sema that we are starting a block. Actions.ActOnBlockArguments(ParamInfo, CurScope); - } else if (! Tok.is(tok::l_brace)) { + } else if (!Tok.is(tok::l_brace)) { ParseBlockId(); } else { // Otherwise, pretend we saw (void).