Re: [PATCH] Avoid suspicious -Wduplicate-branches warning in lto-wrapper.c (PR lto/92972)

2019-12-18 Thread Richard Biener
On December 17, 2019 9:43:26 PM GMT+01:00, Jakub Jelinek wrote: >Hi! > >big ? "-fno-pie" : "-fno-pie" doesn't make much sense, either we want >to >use big ? "-fno-PIE" : "-fno-pie", but as both mean the same thing, I >think >just using "-fno-pie" is good enough. + a few formatting nits and one

[PATCH] Avoid suspicious -Wduplicate-branches warning in lto-wrapper.c (PR lto/92972)

2019-12-17 Thread Jakub Jelinek
Hi! big ? "-fno-pie" : "-fno-pie" doesn't make much sense, either we want to use big ? "-fno-PIE" : "-fno-pie", but as both mean the same thing, I think just using "-fno-pie" is good enough. + a few formatting nits and one comment typo. Bootstrapped/regtested on x86_64-linux and i686-linux, ok