search for: getsrem

Displaying 1 result from an estimated 1 matches for "getsrem".

Did you mean: getfrem
2011 Feb 04
3
[LLVMdev] ConstantBuilder proposal
...tant *C1, Constant *C2) { return ConstantExpr::getSDiv(C1, C2); } static Constant *GetFDiv(Constant *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 Constan...