diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2008-12-16 20:06:41 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2008-12-16 20:06:41 +0000 |
commit | e8e3205b22e388588396ef41fd4bbe437d325a57 (patch) | |
tree | 3d9cf99b9e4e22c04ad6ad85fa8f7ee4f0342f3c /lib/AST/StmtSerialization.cpp | |
parent | fea8685bf3036b199c573e70b03affde2583fc44 (diff) |
Warning fixes to operator precedence warnings.
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
Diffstat (limited to 'lib/AST/StmtSerialization.cpp')
-rw-r--r-- | lib/AST/StmtSerialization.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AST/StmtSerialization.cpp b/lib/AST/StmtSerialization.cpp index aea3d99f19..e25c5cd861 100644 --- a/lib/AST/StmtSerialization.cpp +++ b/lib/AST/StmtSerialization.cpp @@ -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 |