Displaying 1 result from an estimated 1 matches for "getfrem".
2011 Feb 04
3
[LLVMdev] ConstantBuilder proposal
...tant *C1, Constant *C2) {
return ConstantExpr::getFDiv(C1, C2);
}
static Constant *GetURem(Constant *C1, Constant *C2) {
return ConstantExpr::getURem(C1, C2);
}
static Constant *GetSRem(Constant *C1, Constant *C2) {
return ConstantExpr::getSRem(C1, C2);
}
static Constant *GetFRem(Constant *C1, Constant *C2) {
return ConstantExpr::getFRem(C1, C2);
}
static Constant *GetAnd(Constant *C1, Constant *C2) {
return ConstantExpr::getAnd(C1, C2);
}
static Constant *GetOr(Constant *C1, Constant *C2) {
return ConstantExpr::getOr(C1, C2);
}
static Constant *G...