From 0837ed1d79fab0d574931f25351d9b1af0ad3640 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 30 Jan 2002 23:00:41 +0000 Subject: [PATCH] Don't die on call instructions, which reference methods llvm-svn: 1593 --- llvm/include/llvm/Analysis/InstForest.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/Analysis/InstForest.h b/llvm/include/llvm/Analysis/InstForest.h index 13eb54fa52cb..efcbf519f668 100644 --- a/llvm/include/llvm/Analysis/InstForest.h +++ b/llvm/include/llvm/Analysis/InstForest.h @@ -235,7 +235,7 @@ InstTreeNode::InstTreeNode(InstForest &IF, Value *V, if (!isa(V)) { assert((isa(V) || isa(V) || - isa(V) || isa(V)) && + isa(V) || isa(V)) && "Unrecognized value type for InstForest Partition!"); if (isa(V)) getTreeData().first.second = ConstNode;