On Mon, 2 Jul 2018, Richard Sandiford wrote:
> Richard Biener writes:
> > On Fri, 22 Jun 2018, David Malcolm wrote:
> >
> >> NightStrike and I were chatting on IRC last week about
> >> issues with trying to vectorize the following code:
> >>
> >> #include
> >> std::size_t f(std::vector> const &
Richard Biener writes:
> On Fri, 22 Jun 2018, David Malcolm wrote:
>
>> NightStrike and I were chatting on IRC last week about
>> issues with trying to vectorize the following code:
>>
>> #include
>> std::size_t f(std::vector> const & v) {
>> std::size_t ret = 0;
>> for (auto const & w
On Fri, 22 Jun 2018, David Malcolm wrote:
> NightStrike and I were chatting on IRC last week about
> issues with trying to vectorize the following code:
>
> #include
> std::size_t f(std::vector> const & v) {
> std::size_t ret = 0;
> for (auto const & w: v)
> ret += w.si