]> granicus.if.org Git - clang/commitdiff
Fixup whitespacing.
authorMike Stump <mrs@apple.com>
Tue, 14 Apr 2009 18:24:37 +0000 (18:24 +0000)
committerMike Stump <mrs@apple.com>
Tue, 14 Apr 2009 18:24:37 +0000 (18:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69055 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Basic/ConvertUTF.c
lib/CodeGen/CGExpr.cpp
lib/Parse/ParseExpr.cpp

index 49430471c46d96df45edd4faeba5be40cbc63eda..e5dd3e6bf5706f81e9f3127dd0d8da6690d4601c 100644 (file)
@@ -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;
        }
index 1db3b6ebc06e530549a200a1238e5335a2952e70..bf862e72c3d0a852114ca60cbc2b32930c302780 100644 (file)
@@ -631,7 +631,7 @@ LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
   if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
         isa<ImplicitParamDecl>(VD))) {
     LValue LV;
-    bool GCable = VD->hasLocalStorage() && ! VD->hasAttr<BlocksAttr>();
+    bool GCable = VD->hasLocalStorage() && !VD->hasAttr<BlocksAttr>();
     if (VD->hasExternalStorage()) {
       LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
                             E->getType().getCVRQualifiers(),
index ebba576643bbe87d694b13ac2087bd1204a24e88..20a8359d1d3a36f61ced16bba65913aa67996d64 100644 (file)
@@ -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).