Commit 4692a783 by Vladimir Makarov

[multiple changes]

2017-12-08  Vladimir Makarov  <vmakarov@redhat.com>

	PR rtl-optimization/83317
	* lra-constraints.c (process_address_1): Add insn code check.

2017-12-08  Jakub Jelinek  <jakub@redhat.com>

	PR rtl-optimization/83317
	* gcc.target/i386/pr83317.c: New test.

From-SVN: r255517
parent d5910e08
2017-12-08 Vladimir Makarov <vmakarov@redhat.com>
PR rtl-optimization/83317
* lra-constraints.c (process_address_1): Add insn code check.
2017-12-08 Michael Matz <matz@suse.de>
Fix PR tree-optimization/83323
......@@ -3222,7 +3222,8 @@ process_address_1 (int nop, bool check_only_p,
/* Do not attempt to decompose arbitrary addresses generated by combine
for asm operands with loose constraints, e.g 'X'. */
else if (MEM_P (op)
&& !(get_constraint_type (cn) == CT_FIXED_FORM
&& !(INSN_CODE (curr_insn) < 0
&& get_constraint_type (cn) == CT_FIXED_FORM
&& constraint_satisfied_p (op, cn)))
decompose_mem_address (&ad, op);
else if (GET_CODE (op) == SUBREG
......
2017-12-08 Jakub Jelinek <jakub@redhat.com>
PR rtl-optimization/83317
* gcc.target/i386/pr83317.c: New test.
2017-12-08 Jakub Jelinek <jakub@redhat.com>
PR rtl-optimization/81595
* gcc.c-torture/compile/pr81595.c: New test.
......
/* PR rtl-optimization/83317 */
/* { dg-do compile } */
/* { dg-options "-O1" } */
/* { dg-additional-options "-fPIC" { target fpic } } */
/* { dg-additional-options "-msse2 -mfpmath=sse" { target ia32 } } */
struct S { double a; };
struct S c;
int d, e;
void *buf[64];
extern int setjmp (void **);
void
foo ()
{
setjmp (buf);
struct S g;
if (d)
g.a = __builtin_copysign (e, d);
c = g;
}
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