From: Ted Kremenek Date: Wed, 6 Feb 2008 04:41:14 +0000 (+0000) Subject: Fixed bug in '=' transfer function: RHS does not have to be a non-LValue. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3434b08eb700e7e541ca43e9dd4f7b2ecf6ca0cf;p=clang Fixed bug in '=' transfer function: RHS does not have to be a non-LValue. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46797 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Analysis/GRConstants.cpp b/Analysis/GRConstants.cpp index 8656d776c8..bd5cb0689b 100644 --- a/Analysis/GRConstants.cpp +++ b/Analysis/GRConstants.cpp @@ -716,8 +716,7 @@ void GRConstants::VisitBinaryOperator(BinaryOperator* B, case BinaryOperator::Assign: { const LValue& L1 = cast(V1); - const NonLValue& R2 = cast(V2); - Nodify(Dst, B, N2, SetValue(SetValue(St, B, R2), L1, R2)); + Nodify(Dst, B, N2, SetValue(SetValue(St, B, V2), L1, V2)); break; }