On Mon, Apr 25, 2016 at 11:35:16AM +0200, Bernd Schmidt wrote: > On 04/20/2016 08:22 AM, tbsaunde+...@tbsaunde.org wrote: > >- rtx_insn_list *merged_insns = 0; > >+ auto_vec<std::pair<rtx_insn *, bool>, 10> merged_insns; > > I see Jeff has already acked this, but some of the expressions here are > getting unwieldy. can we maybe shorten some of this using typedefs?
I guess you could shorten std::pair<rtx_insn *, bool> to insn_bool_pair or something, I don't have a great descriptive name. It was only used 3 times I think, so I wasn't terribly concerned, but I'd be happy to change it. Trev > > > Bernd