Home | History | Annotate | Download | only in Scalar

Lines Matching refs:OldTy

1932 static bool canConvertValue(const DataLayout &DL, Type *OldTy, Type *NewTy) {
1933 if (OldTy == NewTy)
1935 if (IntegerType *OldITy = dyn_cast<IntegerType>(OldTy))
1939 if (DL.getTypeSizeInBits(NewTy) != DL.getTypeSizeInBits(OldTy))
1941 if (!NewTy->isSingleValueType() || !OldTy->isSingleValueType())
1944 if (NewTy->isPointerTy() || OldTy->isPointerTy()) {
1945 if (NewTy->isPointerTy() && OldTy->isPointerTy())
1947 if (NewTy->isIntegerTy() || OldTy->isIntegerTy())