Re: C PATCH to remove unused block of code

2017-08-18 Thread Marek Polacek
On Thu, Aug 17, 2017 at 02:17:31PM +, Joseph Myers wrote: > On Thu, 17 Aug 2017, Marek Polacek wrote: > > > I've been itching to remove this code for some time now. The comment > > suggests > > that the code is actually unused, so I replaced the body of that "else if" > > with > >

Re: C PATCH to remove unused block of code

2017-08-17 Thread Joseph Myers
On Thu, 17 Aug 2017, Marek Polacek wrote: > I've been itching to remove this code for some time now. The comment suggests > that the code is actually unused, so I replaced the body of that "else if" > with > gcc_unreachable (); and ran regtest/bootstrap and nothing broke, so I propose > to do

C PATCH to remove unused block of code

2017-08-17 Thread Marek Polacek
I've been itching to remove this code for some time now. The comment suggests that the code is actually unused, so I replaced the body of that "else if" with gcc_unreachable (); and ran regtest/bootstrap and nothing broke, so I propose to do away with it. Bootstrapped/regtested on x86_64-linux,