On 30 August 2018 22:20:06 CEST, Marc Glisse <marc.gli...@inria.fr> wrote: >Hello,
> >INTEGRALS_SIGN_PREC_MATCH: the name doesn't really match the semantics. +#define INTEGRALS_SIGN_PREC_MATCH(A, B) \ + TYPE_PRECISION (TREE_TYPE (A)) == TYPE_PRECISION (TREE_TYPE (B)) \ + (TYPE_PRECISION (TREE_TYPE (A)) > TYPE_PRECISION (TREE_TYPE (B)) \ + && !TYPE_UNSIGNED (TREE_TYPE (B))) + Unless my mailer somehow mangled it, isn't there some operator ( maybe || ?) missing between the eq clause and the second one? How comes that it even compiles, presumably without a warning? thanks,