Home | History | Annotate | Download | only in Scalar

Lines Matching defs:ValTy

2270           Type *ValTy = EltTy->getScalarType();
2273 unsigned EltSize = TD->getTypeSizeInBits(ValTy);
2284 if (ValTy->isPointerTy())
2285 StoreVal = ConstantExpr::getIntToPtr(StoreVal, ValTy);
2286 else if (ValTy->isFloatingPointTy())
2287 StoreVal = ConstantExpr::getBitCast(StoreVal, ValTy);
2288 assert(StoreVal->getType() == ValTy && "Type mismatch!");