Fix output_constructor_bitfield handling of wide bitfields (PR89037)

2019-01-25 Thread Richard Sandiford
The testcase was failing because we were trying to access TREE_INT_CST_ELT (x, 1) of a 128-bit integer that was small enough to need only a single element. Tested on aarch64-linux-gnu, aarch64_be-elf and x86_64-linux-gnu. OK to install? Richard 2019-01-25 Richard Sandiford gcc/ PR m

Re: Fix output_constructor_bitfield handling of wide bitfields (PR89037)

2019-01-25 Thread Richard Biener
On January 25, 2019 1:12:07 PM GMT+01:00, Richard Sandiford wrote: >The testcase was failing because we were trying to access >TREE_INT_CST_ELT (x, 1) of a 128-bit integer that was small enough >to need only a single element. > >Tested on aarch64-linux-gnu, aarch64_be-elf and x86_64-linux-gnu. >O