On 2016/7/21 07:13 PM, Jakub Jelinek wrote: > Better put every && on a separate line if the whole if (...) doesn't fit > on a single line. > >> > + && !n->sym->attr.cray_pointer >> > + && !n->sym->attr.cray_pointee) > This is too ugly. I'd instead move the if after the cray pointer/pointee > tests, i.e. > if (n->sym->attr.cray_pointer) > gfc_error (...); > else if (n->sym->attr.cray_pointee) > gfc_error (...); > else if (n->sym->attr.flavor == FL_VARIABLE > && !n->sym->as > && !n->sym->attr.pointer) > gfc_error (...); > Hi Jakub, I've adjusted the patch like you suggested. Patch has been re-tested and applied to gomp-4_0-branch, okay for trunk as well?