search for: getand

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

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