]> granicus.if.org Git - clang/commitdiff
Warning fixes to operator precedence warnings.
authorEli Friedman <eli.friedman@gmail.com>
Tue, 16 Dec 2008 20:06:41 +0000 (20:06 +0000)
committerEli Friedman <eli.friedman@gmail.com>
Tue, 16 Dec 2008 20:06:41 +0000 (20:06 +0000)
Someone should double-check that I didn't somehow break ObjC
serialization; I think the change there actually changes the semantics.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61098 91177308-0d34-0410-b5e6-96231b3b80d8

lib/AST/DeclCXX.cpp
lib/AST/StmtSerialization.cpp
lib/CodeGen/CGCXX.cpp

index 3d9970d2a5c0d18dfa2b6efa9a88347bfd82c63a..cce824609dc21bccfb1906f27c66631128632daf 100644 (file)
@@ -90,13 +90,13 @@ bool CXXRecordDecl::hasConstCopyConstructor(ASTContext &Context) const {
            = Constructors->function_begin();
          Con != Constructors->function_end(); ++Con) {
     if (cast<CXXConstructorDecl>(*Con)->isCopyConstructor(Context, TypeQuals) &&
-        (TypeQuals & QualType::Const != 0))
+        (TypeQuals & QualType::Const) != 0)
       return true;
     }
   } else if (CXXConstructorDecl *Constructor 
                = dyn_cast<CXXConstructorDecl>(*Lookup.first)) {
     return Constructor->isCopyConstructor(Context, TypeQuals) &&
-           (TypeQuals & QualType::Const != 0);
+           (TypeQuals & QualType::Const) != 0;
   }
   return false;
 }
index aea3d99f197553af9f19f5f88ca4a7a298aa3d2c..e25c5cd861c91339e675ca2bb9edcaf5fb38abfb 100644 (file)
@@ -1240,7 +1240,7 @@ ObjCMessageExpr* ObjCMessageExpr::CreateImpl(Deserializer& D, ASTContext& C) {
   
   // Now read in the arguments.
   
-  if (flags & Flags == IsInstMeth)
+  if ((flags & Flags) == IsInstMeth)
     D.BatchReadOwnedPtrs(NumArgs+1, SubExprs, C);
   else {
     // Read the pointer for Cls/ClassName.  The Deserializer will handle the
index d55d0f81bc9b7bfbeaa420be9a696b69672aebbe..fe61001709efa3c068f300b8737ca91c489a80fc 100644 (file)
@@ -28,7 +28,7 @@ using namespace CodeGen;
 static void mangleDeclContextInternal(const DeclContext *D, std::string &S)
 {
   // FIXME: Should ObjcMethodDecl have the TranslationUnitDecl as its parent?
-  assert(!D->getParent() || isa<TranslationUnitDecl>(D->getParent()) && 
+  assert((!D->getParent() || isa<TranslationUnitDecl>(D->getParent())) && 
          "Only one level of decl context mangling is currently supported!");
   
   if (const FunctionDecl* FD = dyn_cast<FunctionDecl>(D)) {