diff options
author | Richard Trieu <rtrieu@google.com> | 2011-09-15 21:56:47 +0000 |
---|---|---|
committer | Richard Trieu <rtrieu@google.com> | 2011-09-15 21:56:47 +0000 |
commit | dd22509c82eb7681a0f46b41d61cb2e25a4d8fa1 (patch) | |
tree | dd9697b3b39c1467bb3e2b2ee5f1db8f36e63c57 /include/clang | |
parent | 1f87cf479ad907b6da3505d41ce2c735aa5d9049 (diff) |
Finish the lex->LHS and rex->RHS cleanup in Sema.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@139856 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang')
-rw-r--r-- | include/clang/Sema/Sema.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Sema/Sema.h b/include/clang/Sema/Sema.h index c08244490a..e5afd2d1ac 100644 --- a/include/clang/Sema/Sema.h +++ b/include/clang/Sema/Sema.h @@ -5614,7 +5614,7 @@ public: QualType InvalidOperands(SourceLocation Loc, ExprResult &LHS, ExprResult &RHS); QualType CheckPointerToMemberOperands( // C++ 5.5 - ExprResult &lex, ExprResult &rex, ExprValueKind &VK, + ExprResult &LHS, ExprResult &RHS, ExprValueKind &VK, SourceLocation OpLoc, bool isIndirect); QualType CheckMultiplyDivideOperands( // C99 6.5.5 ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign, @@ -6059,7 +6059,7 @@ private: void CheckReturnStackAddr(Expr *RetValExp, QualType lhsType, SourceLocation ReturnLoc); - void CheckFloatComparison(SourceLocation loc, Expr* lex, Expr* rex); + void CheckFloatComparison(SourceLocation Loc, Expr* LHS, Expr* RHS); void CheckImplicitConversions(Expr *E, SourceLocation CC = SourceLocation()); void CheckBitFieldInitialization(SourceLocation InitLoc, FieldDecl *Field, |