basic-block.h (compute_preds_succs): Change return type in prototype to void.

* basic-block.h (compute_preds_succs): Change return type in
	prototype to void.
	* flow.c (compute_preds_succs): Likewise in function definition.
	* regmove.c (find_matches): Cast char used as array index to unsigned char
	to supress warning.

From-SVN: r18508
This commit is contained in:
Manfred Hollstein 1998-03-12 01:04:46 +00:00
parent 743bb12df3
commit 27d7e05d4a

View File

@ -1202,7 +1202,7 @@ find_matches (insn, matchp)
case '0': case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9':
c -= '0';
if (c < operand_number && likely_spilled[c])
if (c < operand_number && likely_spilled[(unsigned char) c])
break;
matchp->with[operand_number] = c;
any_matches = 1;