Commit 7ce55772 by Jim Wilson Committed by Jim Wilson

Patch to fix x86 gcc.dg/980226-1.c failure report by Manfred Hollstein.

	* reg-stack.c (constrain_asm_operands): Set n_alternatives to zero if
	no operands.

From-SVN: r19236
parent e88caebd
Thu Apr 16 13:45:51 1998 Jim Wilson <wilson@cygnus.com>
* reg-stack.c (constrain_asm_operands): Set n_alternatives to zero if
no operands.
Wed Apr 15 11:33:09 1998 Alexandre Petit-Bianco <apbianco@sendai.cygnus.com>
* tree.c (build_expr_wfl): Use NULL_TREE if the file name is NULL.
......
......@@ -637,9 +637,14 @@ constrain_asm_operands (n_operands, operands, operand_constraints,
already guaranteed that all operands have the same number of
alternatives. */
n_alternatives = 1;
for (q = constraints[0]; *q; q++)
n_alternatives += (*q == ',');
if (n_operands == 0)
n_alternatives = 0;
else
{
n_alternatives = 1;
for (q = constraints[0]; *q; q++)
n_alternatives += (*q == ',');
}
this_alternative = 0;
while (this_alternative < n_alternatives)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment