Home | History | Annotate | Download | only in Scalar

Lines Matching defs:ValTy

2291           Type *ValTy = EltTy->getScalarType();
2294 unsigned EltSize = DL.getTypeSizeInBits(ValTy);
2305 if (ValTy->isPointerTy())
2306 StoreVal = ConstantExpr::getIntToPtr(StoreVal, ValTy);
2307 else if (ValTy->isFloatingPointTy())
2308 StoreVal = ConstantExpr::getBitCast(StoreVal, ValTy);
2309 assert(StoreVal->getType() == ValTy && "Type mismatch!");