Home | History | Annotate | Download | only in Utils

Lines Matching defs:Cond

360       ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition());
362 if (!Cond) {
364 Cond = dyn_cast_or_null<ConstantInt>(V);
368 if (Cond) {
369 BasicBlock *Dest = BI->getSuccessor(!Cond->getZExtValue());
377 ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition());
378 if (!Cond) { // Or known constant after constant prop in the callee...
380 Cond = dyn_cast_or_null<ConstantInt>(V);
382 if (Cond) { // Constant fold to uncond branch!
383 SwitchInst::ConstCaseIt Case = SI->findCaseValue(Cond);