1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

do not crash when using -debug

llvm-svn: 21092
This commit is contained in:
Chris Lattner 2005-04-05 01:12:03 +00:00
parent ede4abc899
commit c5b8fbe7f9

View File

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