On Mon, 12 Mar 2018, Jakub Jelinek wrote:
> Hi!
>
> The following two match.pd spots assume that integer_pow2p will return
> true only for INTEGER_CSTs (it uses wi::to_wide on it), but as the testcase
> shows, that is not always the case, we can get there with COMPLEX_CSTs.
>
> Fixed by requirin
Hi!
The following two match.pd spots assume that integer_pow2p will return
true only for INTEGER_CSTs (it uses wi::to_wide on it), but as the testcase
shows, that is not always the case, we can get there with COMPLEX_CSTs.
Fixed by requiring that it is both INTEGER_CST and integer_pow2p,
bootstra