A D | unifdef.c | 874 static Linetype op_lt(long *p, Linetype at, long a, Linetype bt, long b) { in op_lt() argument 875 return op_strict(p, a < b, at, bt); in op_lt() 877 static Linetype op_gt(long *p, Linetype at, long a, Linetype bt, long b) { in op_gt() argument 878 return op_strict(p, a > b, at, bt); in op_gt() 880 static Linetype op_le(long *p, Linetype at, long a, Linetype bt, long b) { in op_le() argument 881 return op_strict(p, a <= b, at, bt); in op_le() 884 return op_strict(p, a >= b, at, bt); in op_ge() 887 return op_strict(p, a == b, at, bt); in op_eq() 890 return op_strict(p, a != b, at, bt); in op_ne() 895 return op_strict(p, a || b, at, bt); in op_or() [all …]
|