do not crash when using -debug

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21092 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-04-05 01:12:03 +00:00
parent 80196b1331
commit bd135c7706

View File

@ -840,6 +840,8 @@ void Andersens::visitCastInst(CastInst &CI) {
#if 0
Constraints.push_back(Constraint(Constraint::Copy, getNodeValue(CI),
&GraphNodes[UniversalSet]));
#else
getNodeValue(CI);
#endif
}
} else if (isa<PointerType>(Op->getType())) {
@ -848,6 +850,8 @@ void Andersens::visitCastInst(CastInst &CI) {
Constraints.push_back(Constraint(Constraint::Copy,
&GraphNodes[UniversalSet],
getNode(CI.getOperand(0))));
#else
getNode(CI.getOperand(0));
#endif
}
}