Commit f5a5ea4a by Graham Stott Committed by Graham Stott

* recog.c (decode_asm_operands): Check that the SRC is ASM_OPERANDS.

From-SVN: r46713
parent 331f9c78
2001-11-02 Graham Stott <grahams@redhat.com>
* recog.c (decode_asm_operands): Check that the SRC is ASM_OPERANDS.
2001-11-01 Eric Christopher <echristo@redhat.com>
* config.gcc: Revert part of earlier patch.
......
......@@ -1554,7 +1554,8 @@ decode_asm_operands (body, operands, operand_locs, constraints, modes)
template = ASM_OPERANDS_TEMPLATE (asmop);
}
else if (GET_CODE (body) == PARALLEL
&& GET_CODE (XVECEXP (body, 0, 0)) == SET)
&& GET_CODE (XVECEXP (body, 0, 0)) == SET
&& GET_CODE (SET_SRC (XVECEXP (body, 0, 0))) == ASM_OPERANDS)
{
rtx asmop = SET_SRC (XVECEXP (body, 0, 0));
int nparallel = XVECLEN (body, 0); /* Includes CLOBBERs. */
......
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