2.4.1.6 Comparisons

C Function: gcc_jit_rvalue * gcc_jit_context_new_comparison (gcc_jit_context *ctxt, gcc_jit_location *loc, enum gcc_jit_comparison op, gcc_jit_rvalue *a, gcc_jit_rvalue *b)

Build a boolean rvalue out of the comparison of two other rvalues.

C Type: enum gcc_jit_comparison
ComparisonC equivalent
GCC_JIT_COMPARISON_EQx == y
GCC_JIT_COMPARISON_NEx != y
GCC_JIT_COMPARISON_LTx < y
GCC_JIT_COMPARISON_LEx <= y
GCC_JIT_COMPARISON_GTx > y
GCC_JIT_COMPARISON_GEx >= y