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 | c8a590dda351b515b184f18a66d75b9457dab9a6 (patch) | |
tree | 5d9d26d17fe767177b506357686a06e8e4426aaf /clang/lib/AST/StmtSerialization.cpp | |
parent | f2a6e5f0c08badc434440c9dad60c86700dc4961 (diff) | |
download | bcm5719-llvm-c8a590dda351b515b184f18a66d75b9457dab9a6.tar.gz bcm5719-llvm-c8a590dda351b515b184f18a66d75b9457dab9a6.zip |
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.
llvm-svn: 61098
Diffstat (limited to 'clang/lib/AST/StmtSerialization.cpp')
-rw-r--r-- | clang/lib/AST/StmtSerialization.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/StmtSerialization.cpp b/clang/lib/AST/StmtSerialization.cpp index aea3d99f197..e25c5cd861c 100644 --- a/clang/lib/AST/StmtSerialization.cpp +++ b/clang/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 |