Displaying 1 result from an estimated 1 matches for "getfptrunc".
2011 Feb 04
3
[LLVMdev] ConstantBuilder proposal
...ant *C, const Type *Ty) {
return ConstantExpr::getTrunc(C, Ty);
}
static Constant *GetSExt(Constant *C, const Type *Ty) {
return ConstantExpr::getSExt(C, Ty);
}
static Constant *GetZExt(Constant *C, const Type *Ty) {
return ConstantExpr::getZExt(C, Ty);
}
static Constant *GetFPTrunc(Constant *C, const Type *Ty) {
return ConstantExpr::getFPTrunc(C, Ty);
}
static Constant *GetFPExtend(Constant *C, const Type *Ty) {
return ConstantExpr::getFPExtend(C, Ty);
}
static Constant *GetUIToFP(Constant *C, const Type *Ty) {
return ConstantExpr::getUIToFP(C, Ty);
}...