Re: [patch,avr] Fix avr build broken by r276985.

2019-10-17 Thread Richard Biener
On Thu, 17 Oct 2019, Georg-Johann Lay wrote: > Am 10/17/19 um 1:22 PM schrieb Eric Botcazou: > >> r276985 broke avr because it removed PARAM_ALLOW_STORE_DATA_RACES from > >> --params. The patch fixes that by using flag_store_data_races = 1 instead. > > > > Note that you'll unconditionally overri

Re: [patch,avr] Fix avr build broken by r276985.

2019-10-17 Thread Georg-Johann Lay
Am 10/17/19 um 1:22 PM schrieb Eric Botcazou: r276985 broke avr because it removed PARAM_ALLOW_STORE_DATA_RACES from --params. The patch fixes that by using flag_store_data_races = 1 instead. Note that you'll unconditionally override the user, unlike the original code. You're right. What ab

Re: [patch,avr] Fix avr build broken by r276985.

2019-10-17 Thread Jakub Jelinek
On Thu, Oct 17, 2019 at 01:22:54PM +0200, Eric Botcazou wrote: > > r276985 broke avr because it removed PARAM_ALLOW_STORE_DATA_RACES from > > --params. The patch fixes that by using flag_store_data_races = 1 instead. > > Note that you'll unconditionally override the user, unlike the original code

Re: [patch,avr] Fix avr build broken by r276985.

2019-10-17 Thread Eric Botcazou
> r276985 broke avr because it removed PARAM_ALLOW_STORE_DATA_RACES from > --params. The patch fixes that by using flag_store_data_races = 1 instead. Note that you'll unconditionally override the user, unlike the original code. -- Eric Botcazou

Re: [patch,avr] Fix avr build broken by r276985.

2019-10-17 Thread Richard Biener
On Thu, 17 Oct 2019, Georg-Johann Lay wrote: > Hi, > > r276985 broke avr because it removed PARAM_ALLOW_STORE_DATA_RACES from > --params. The patch fixes that by using flag_store_data_races = 1 instead. > > Ok to apply? OK and sorry for the breakage. Richard.