Commit 9a822fc7 by Jakub Jelinek Committed by Jakub Jelinek

re PR middle-end/77959 (ICE in ix86_decompose_address, at i386/i386.c:14954)

	PR middle-end/77959
	* expr.c (expand_expr_real_1) <case CONST_DECL>: For EXPAND_WRITE
	return a MEM.

	* gfortran.dg/pr77959.f90: New test.

From-SVN: r241182
parent 6af11d2b
2016-10-14 Jakub Jelinek <jakub@redhat.com>
PR middle-end/77959
* expr.c (expand_expr_real_1) <case CONST_DECL>: For EXPAND_WRITE
return a MEM.
2016-10-14 Eric Botcazou <ebotcazou@adacore.com>
* config/sparc/sparc-passes.def: New file.
......
......@@ -9915,6 +9915,19 @@ expand_expr_real_1 (tree exp, rtx target, machine_mode tmode,
}
case CONST_DECL:
if (modifier == EXPAND_WRITE)
{
/* Writing into CONST_DECL is always invalid, but handle it
gracefully. */
addr_space_t as = TYPE_ADDR_SPACE (TREE_TYPE (exp));
machine_mode address_mode = targetm.addr_space.address_mode (as);
op0 = expand_expr_addr_expr_1 (exp, NULL_RTX, address_mode,
EXPAND_NORMAL, as);
op0 = memory_address_addr_space (mode, op0, as);
temp = gen_rtx_MEM (mode, op0);
set_mem_addr_space (temp, as);
return temp;
}
return expand_expr (DECL_INITIAL (exp), target, VOIDmode, modifier);
case REAL_CST:
......
2016-10-14 Jakub Jelinek <jakub@redhat.com>
PR middle-end/77959
* gfortran.dg/pr77959.f90: New test.
DR 1511 - const volatile variables and ODR
* g++.dg/DRs/dr1511-1.C: New test.
* g++.dg/DRs/dr1511-2.C: New test.
......
! PR middle-end/77959
! { dg-do compile }
! { dg-options "-O2" }
program pr77959
interface
subroutine foo(x) ! { dg-warning "Type mismatch in argument" }
real :: x
end
end interface
call foo(1.0)
end
subroutine foo(x)
complex :: x
x = x + 1
end
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