From: Chris Lattner Date: Wed, 30 Jan 2002 23:00:41 +0000 (+0000) Subject: Don't die on call instructions, which reference methods X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b1244c54a4fc40db5a006bf6cf7e583faed7773e;p=oota-llvm.git Don't die on call instructions, which reference methods git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1593 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Analysis/InstForest.h b/include/llvm/Analysis/InstForest.h index 13eb54fa52c..efcbf519f66 100644 --- a/include/llvm/Analysis/InstForest.h +++ b/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;