* config/i386/i386.c (ix86_avx_u128_mode_after): Don't
look for reg in CALL operand.
From-SVN: r193282
2012-11-07 Jakub Jelinek <jakub@redhat.com>
+ * config/i386/i386.c (ix86_avx_u128_mode_after): Don't
+ look for reg in CALL operand.
+
PR debug/54693
* tree-flow.h (propagate_threaded_block_debug_into): New prototype.
* tree-ssa-threadedge.c (propagate_threaded_block_debug_into): No
/* Check for CALL instruction. */
if (CALL_P (insn))
{
- if (GET_CODE (pat) == SET || GET_CODE (pat) == CALL)
+ if (GET_CODE (pat) == SET)
reg = SET_DEST (pat);
- else if (GET_CODE (pat) == PARALLEL)
+ else if (GET_CODE (pat) == PARALLEL)
for (i = XVECLEN (pat, 0) - 1; i >= 0; i--)
{
rtx x = XVECEXP (pat, 0, i);