Re: [PATCH 1/9] Replace int with boolean in predicate functions.

2019-08-07 Thread Richard Biener
On Tue, Aug 6, 2019 at 5:45 PM Martin Liska wrote: > > > gcc/ChangeLog: OK. Richard. > 2019-07-24 Martin Liska > > * fold-const.c (twoval_comparison_p): Replace int > with bool as a return type. > (simple_operand_p): Likewise. > (operand_equal_p): Replace int

[PATCH 1/9] Replace int with boolean in predicate functions.

2019-08-06 Thread Martin Liska
gcc/ChangeLog: 2019-07-24 Martin Liska * fold-const.c (twoval_comparison_p): Replace int with bool as a return type. (simple_operand_p): Likewise. (operand_equal_p): Replace int with bool as a return type. * fold-const.h (operand_equal_p): Likewise. ---