Home | History | Annotate | Download | only in IR

Lines Matching refs:getNeg

834   static Constant *getNeg(Constant *C, bool HasNUW = false, bool HasNSW =false);
873 static Constant *getNSWNeg(Constant *C) { return getNeg(C, false, true); }
874 static Constant *getNUWNeg(Constant *C) { return getNeg(C, true, false); }