git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@47590 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ted Kremenek 2008-02-26 03:44:25 +00:00
Родитель f4e15fc4c1
Коммит 018c15fa98
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -582,7 +582,7 @@ void GRExprEngine::VisitDeref(UnaryOperator* U, NodeTy* Pred, NodeSet& Dst) {
NodeSet DstTmp; NodeSet DstTmp;
if (!isa<DeclRefExpr>(Ex)) if (isa<DeclRefExpr>(Ex))
DstTmp.Add(Pred); DstTmp.Add(Pred);
else else
Visit(Ex, Pred, DstTmp); Visit(Ex, Pred, DstTmp);