free instructions mark their operands as being heap nodes.

llvm-svn: 5425
This commit is contained in:
Chris Lattner 2003-01-28 20:59:57 +00:00
parent aa6b2bfd78
commit 362dab3705
1 changed files with 2 additions and 1 deletions

View File

@ -394,7 +394,8 @@ void GraphBuilder::visitCallInst(CallInst &CI) {
void GraphBuilder::visitFreeInst(FreeInst &FI) {
// Mark that the node is written to...
getValueDest(*FI.getOperand(0)).getNode()->NodeType |= DSNode::Modified;
getValueDest(*FI.getOperand(0)).getNode()->NodeType
|= DSNode::Modified | DSNode::HeapNode;
}
/// Handle casts...