Searched refs:AITy (Results 1 – 1 of 1) sorted by relevance
2398 if (auto *AITy = dyn_cast<IntegerType>(NewAllocaTy)) in visitLoadInst() local2400 if (AITy->getBitWidth() < TITy->getBitWidth()) { in visitLoadInst()2403 V = IRB.CreateShl(V, TITy->getBitWidth() - AITy->getBitWidth(), in visitLoadInst()2536 if (auto *AITy = dyn_cast<IntegerType>(NewAllocaTy)) in visitStoreInst() local2537 if (VITy->getBitWidth() > AITy->getBitWidth()) { in visitStoreInst()2539 V = IRB.CreateLShr(V, VITy->getBitWidth() - AITy->getBitWidth(), in visitStoreInst()2541 V = IRB.CreateTrunc(V, AITy, "load.trunc"); in visitStoreInst()