From: Ted Kremenek Date: Wed, 28 Jan 2009 04:37:52 +0000 (+0000) Subject: Remove '#if 0' code. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1d549a8cf2ba6847b3c35ede96ea761931916f0f;p=clang Remove '#if 0' code. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63176 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/CFRefCount.cpp b/lib/Analysis/CFRefCount.cpp index bfc9d9058b..0f2208bd89 100644 --- a/lib/Analysis/CFRefCount.cpp +++ b/lib/Analysis/CFRefCount.cpp @@ -1524,10 +1524,6 @@ void CFRefCount::EvalSummary(ExplodedNodeSet& Dst, } } else if (isa(V)) { -#if 0 - // Nuke all arguments passed by reference. - StateMgr.Unbind(StVals, cast(V)); -#else if (loc::MemRegionVal* MR = dyn_cast(&V)) { if (GetArgE(Summ, idx) == DoNothingByRef) @@ -1588,7 +1584,6 @@ void CFRefCount::EvalSummary(ExplodedNodeSet& Dst, // Nuke all other arguments passed by reference. state = state.Unbind(cast(V)); } -#endif } else if (isa(V)) state = state.Unbind(cast(V).getLoc());