From f405d7e6f11ccbb5d69d180e3707740ab8728ade Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Mon, 31 Aug 2009 23:41:50 +0000 Subject: Eliminate CXXAdornedMemberExpr entirely. Instead, optionally allocate space within the MemberExpr for the nested-name-specifier and its source range. We'll do the same thing with explicitly-specified template arguments, assuming I don't flip-flop again. llvm-svn: 80642 --- clang/lib/Analysis/GRExprEngine.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'clang/lib/Analysis/GRExprEngine.cpp') diff --git a/clang/lib/Analysis/GRExprEngine.cpp b/clang/lib/Analysis/GRExprEngine.cpp index 4390025f580..d0b6bbf0956 100644 --- a/clang/lib/Analysis/GRExprEngine.cpp +++ b/clang/lib/Analysis/GRExprEngine.cpp @@ -407,7 +407,6 @@ void GRExprEngine::Visit(Stmt* S, ExplodedNode* Pred, ExplodedNodeSet& Dst) { break; case Stmt::MemberExprClass: - case Stmt::CXXAdornedMemberExprClass: VisitMemberExpr(cast(S), Pred, Dst, false); break; @@ -514,7 +513,6 @@ void GRExprEngine::VisitLValue(Expr* Ex, ExplodedNode* Pred, return; case Stmt::MemberExprClass: - case Stmt::CXXAdornedMemberExprClass: VisitMemberExpr(cast(Ex), Pred, Dst, true); return; -- cgit v1.2.3