*** empty log message ***

From-SVN: r587
This commit is contained in:
Richard Kenner 1992-03-25 21:19:06 -05:00
parent a0e2917c3a
commit c114787aa9
2 changed files with 2 additions and 2 deletions

View File

@ -635,7 +635,7 @@ check_attr_test (exp, is_const)
else if (n_comma_elts (XSTR (exp, 1)) == 1) else if (n_comma_elts (XSTR (exp, 1)) == 1)
{ {
attr = find_attr (XEXP (exp, 0), 0); attr = find_attr (XSTR (exp, 0), 0);
if (attr == NULL) if (attr == NULL)
{ {
if (! strcmp (XSTR (exp, 0), "alternative")) if (! strcmp (XSTR (exp, 0), "alternative"))

View File

@ -125,7 +125,7 @@ mark_operand_seen (opno)
if (opno >= operand_seen_length) if (opno >= operand_seen_length)
{ {
operand_seen_length *= 2; operand_seen_length *= 2;
operand_seen = (char *) xrealloc (operand_seen_length); operand_seen = (char *) xrealloc (operand_seen, operand_seen_length);
} }
operand_seen[opno] = 1; operand_seen[opno] = 1;