(fold_rtx): Fold inside ASM_OPERANDS.

From-SVN: r12788
This commit is contained in:
Richard Kenner 1996-09-23 18:43:54 -04:00
parent 235c50216b
commit 9255709cac
1 changed files with 6 additions and 0 deletions

View File

@ -5160,6 +5160,12 @@ fold_rtx (x, insn)
return x;
}
case ASM_OPERANDS:
for (i = XVECLEN (x, 3) - 1; i >= 0; i--)
validate_change (insn, &XVECEXP (x, 3, i),
fold_rtx (XVECEXP (x, 3, i), insn), 0);
break;
}
const_arg0 = 0;