From b1244c54a4fc40db5a006bf6cf7e583faed7773e 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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1593 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/InstForest.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.34.1