Name: Anonymous 2011-01-30 7:16
Try to avoid having two operators of different precedence at the same level of indentation. For example, don’t write this:
Instead, use extra parentheses so that the indentation shows the nesting:
mode = (inmode[j] == VOIDmode
|| GET_MODE_SIZE (outmode[j]) > GET_MODE_SIZE (inmode[j])
? outmode[j] : inmode[j]);Instead, use extra parentheses so that the indentation shows the nesting:
mode = ((inmode[j] == VOIDmode
|| (GET_MODE_SIZE (outmode[j]) > GET_MODE_SIZE (inmode[j])))