On 29 April 2018 at 15:44, Richard Henderson <richard.hender...@linaro.org> wrote: > On 04/27/2018 11:04 AM, Alex Bennée wrote: >> >> Richard Henderson <richard.hender...@linaro.org> writes: >>> + elements = 8 << is_q >> size; >> >> That is a brain exercise for operator precedence. Would: >> >> elements = (is_q ? 16 : 8) >> size; >> >> be clearer? > > I don't think so myself.
Can we at least put in the brackets if we're going to use the << >> expression? thanks -- PMM