diff options
author | John McCall <rjmccall@apple.com> | 2010-12-01 04:43:34 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-12-01 04:43:34 +0000 |
commit | 0ae287a498b8cec2086fe6b7e753cbb3df63e74a (patch) | |
tree | 22c868a442c3e824b29d555680ef1f86e13b5ee3 /lib/Checker/GRExprEngine.cpp | |
parent | bb3f9952842f4efa663303b0fd1e23a04a0ad082 (diff) |
Restore the lvalue-to-rvalue conversion patch with a minimal fix.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120555 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Checker/GRExprEngine.cpp')
-rw-r--r-- | lib/Checker/GRExprEngine.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Checker/GRExprEngine.cpp b/lib/Checker/GRExprEngine.cpp index f541a7ece4..fc0913bc2f 100644 --- a/lib/Checker/GRExprEngine.cpp +++ b/lib/Checker/GRExprEngine.cpp @@ -2650,6 +2650,7 @@ void GRExprEngine::VisitCast(const CastExpr *CastE, const Expr *Ex, Dst.Add(*I); return; + case CK_LValueToRValue: case CK_NoOp: case CK_FunctionToPointerDecay: for (ExplodedNodeSet::iterator I = S2.begin(), E = S2.end(); I != E; ++I) { |