[PATCH] Fix a brown paper bag bug in my recent match.pd change (PR middle-end/84309)

2018-02-13 Thread Jakub Jelinek
Hi! When changing my recent match.pd fix to defer the -> exp2 (log2 (C) * x) optimization until later, I've swapped the two patterns and changed the first one to use exps and logs, but forgot to change the second one to use exp2s and log2s. For the testcase in the patch it actually didn't make a

Re: [PATCH] Fix a brown paper bag bug in my recent match.pd change (PR middle-end/84309)

2018-02-13 Thread Richard Biener
On February 13, 2018 6:54:36 PM GMT+01:00, Jakub Jelinek wrote: >Hi! > >When changing my recent match.pd fix to defer the -> exp2 (log2 (C) * >x) >optimization until later, I've swapped the two patterns and changed >the first one to use exps and logs, but forgot to change the