Re: [PATCH] c: fix uninitialized c_expr::m_decimal [PR106830]

2022-09-22 Thread Jakub Jelinek via Gcc-patches
On Tue, Sep 06, 2022 at 09:20:47PM -0400, David Malcolm via Gcc-patches wrote: > I added c_expr::m_decimal in r13-2386-gbedfca647a9e9c1a as part of the > implementation of -Wxor-used-as-pow, but I missed various places where > the field needed to be initialized. > > Fixed thusly (based on searchin

[PATCH] c: fix uninitialized c_expr::m_decimal [PR106830]

2022-09-06 Thread David Malcolm via Gcc-patches
I added c_expr::m_decimal in r13-2386-gbedfca647a9e9c1a as part of the implementation of -Wxor-used-as-pow, but I missed various places where the field needed to be initialized. Fixed thusly (based on searching for places that assign to the original_code field). Successfully bootstrapped & regrte