some long lines split

This commit is contained in:
dick
1986-03-17 17:47:04 +00:00
parent 96963fede1
commit 56fef70c43
14 changed files with 71 additions and 34 deletions

View File

@@ -105,8 +105,11 @@ ch7bin(expp, oper, expr)
}
if ((*expp)->ex_type->tp_fund == POINTER) {
pointer_arithmetic(expp, oper, &expr);
if (expr->ex_type->tp_size != (*expp)->ex_type->tp_size)
if ( expr->ex_type->tp_size !=
(*expp)->ex_type->tp_size
) {
ch7cast(&expr, CAST, (*expp)->ex_type);
}
pointer_binary(expp, oper, expr);
}
else {