Example #1
0
 public unsafe static ValueRef ConstFCmp(RealPredicate Predicate, ValueRef LHSConstant, ValueRef RHSConstant) {
   ValueRef ret = new ValueRef(LLVMPINVOKE.ConstFCmp((int)Predicate, LHSConstant.Value, RHSConstant.Value));
   return ret;
 }
Example #2
0
 public unsafe static ValueRef BuildFCmp(BuilderRef arg0, RealPredicate Op, ValueRef LHS, ValueRef RHS, string Name) {
   ValueRef ret = new ValueRef(LLVMPINVOKE.BuildFCmp(arg0.Value, (int)Op, LHS.Value, RHS.Value, Name));
   return ret;
 }
Example #3
0
 public static LLVMRealPredicate Unwrap(this RealPredicate wrapper) => (LLVMRealPredicate)(int)wrapper;