forked from OSchip/llvm-project
Nodes get forwarded when they are collapsed currently.
llvm-svn: 6696
This commit is contained in:
parent
82f4f85f6d
commit
3937726a5b
|
@ -110,8 +110,11 @@ namespace {
|
|||
///
|
||||
DSNode *createNode(DSNode::NodeTy NodeType, const Type *Ty = 0) {
|
||||
DSNode *N = new DSNode(NodeType, Ty, &G); // Create the node
|
||||
if (DisableFieldSensitivity)
|
||||
if (DisableFieldSensitivity) {
|
||||
N->foldNodeCompletely();
|
||||
if (DSNode *FN = N->getForwardNode())
|
||||
N = FN;
|
||||
}
|
||||
return N;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue