Commit 9255709c by Richard Kenner

(fold_rtx): Fold inside ASM_OPERANDS.

From-SVN: r12788
parent 235c5021
...@@ -5160,6 +5160,12 @@ fold_rtx (x, insn) ...@@ -5160,6 +5160,12 @@ fold_rtx (x, insn)
return x; 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; const_arg0 = 0;
......
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