Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:NewTy

2317     /// \brief Mutate the type of \p Inst into \p NewTy.
2318 TypeMutator(Instruction *Inst, Type *NewTy)
2320 DEBUG(dbgs() << "Do: MutateType: " << *Inst << " with " << *NewTy
2322 Inst->mutateType(NewTy);
2434 void mutateType(Instruction *Inst, Type *NewTy);
2468 void TypePromotionTransaction::mutateType(Instruction *Inst, Type *NewTy) {
2469 Actions.push_back(make_unique<TypePromotionTransaction::TypeMutator>(Inst, NewTy));