Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:NewTy

1302     /// \brief Mutate the type of \p Inst into \p NewTy.
1303 TypeMutator(Instruction *Inst, Type *NewTy)
1305 DEBUG(dbgs() << "Do: MutateType: " << *Inst << " with " << *NewTy
1307 Inst->mutateType(NewTy);
1419 void mutateType(Instruction *Inst, Type *NewTy);
1451 void TypePromotionTransaction::mutateType(Instruction *Inst, Type *NewTy) {
1452 Actions.push_back(make_unique<TypePromotionTransaction::TypeMutator>(Inst, NewTy));