[cfe-commits] r91982 - /cfe/trunk/lib/Analysis/GRExprEngine.cpp
Ted Kremenek
kremenek at apple.com
Tue Dec 22 19:14:23 PST 2009
Author: kremenek
Date: Tue Dec 22 21:14:23 2009
New Revision: 91982
URL: http://llvm.org/viewvc/llvm-project?rev=91982&view=rev
Log:
Teach GRExprEngine::VisitLValue to ignore CXXExprWithTempories (for now).
Modified:
cfe/trunk/lib/Analysis/GRExprEngine.cpp
Modified: cfe/trunk/lib/Analysis/GRExprEngine.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Analysis/GRExprEngine.cpp?rev=91982&r1=91981&r2=91982&view=diff
==============================================================================
--- cfe/trunk/lib/Analysis/GRExprEngine.cpp (original)
+++ cfe/trunk/lib/Analysis/GRExprEngine.cpp Tue Dec 22 21:14:23 2009
@@ -754,6 +754,7 @@
switch (Ex->getStmtClass()) {
// C++ stuff we don't support yet.
+ case Stmt::CXXExprWithTemporariesClass:
case Stmt::CXXMemberCallExprClass:
case Stmt::CXXZeroInitValueExprClass: {
SaveAndRestore<bool> OldSink(Builder->BuildSinks);
More information about the cfe-commits
mailing list