~mmach/netext73/mesa-ryzen

« back to all changes in this revision

Viewing changes to src/gallium/auxiliary/gallivm/lp_bld_logic.c

  • Committer: mmach
  • Date: 2023-11-02 21:31:35 UTC
  • Revision ID: netbit73@gmail.com-20231102213135-18d4tzh7tj0uz752
2023-11-02 22:11:57

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
                     enum pipe_compare_func func,
81
81
                     LLVMValueRef a,
82
82
                     LLVMValueRef b,
83
 
                     boolean ordered)
 
83
                     bool ordered)
84
84
{
85
85
   LLVMBuilderRef builder = gallivm->builder;
86
86
   LLVMTypeRef int_vec_type = lp_build_int_vec_type(gallivm, type);
207
207
   }
208
208
#endif
209
209
 
210
 
   return lp_build_compare_ext(gallivm, type, func, a, b, FALSE);
 
210
   return lp_build_compare_ext(gallivm, type, func, a, b, false);
211
211
}
212
212
 
213
213
/**
224
224
                     LLVMValueRef a,
225
225
                     LLVMValueRef b)
226
226
{
227
 
   return lp_build_compare_ext(bld->gallivm, bld->type, func, a, b, TRUE);
 
227
   return lp_build_compare_ext(bld->gallivm, bld->type, func, a, b, true);
228
228
}
229
229
 
230
230
/**