re PR middle-end/63974 (gcc.c-torture/compile/991213-3.c ICEs with -mabi=ilp32)

PR middle-end/63974
	* cfgexpand.c (expand_computed_goto): Don't call
	convert_memory_address here.

From-SVN: r219529
This commit is contained in:
Jakub Jelinek 2015-01-13 14:44:06 +01:00 committed by Jakub Jelinek
parent d0ed943ca4
commit 08cb0abc7c
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2015-01-13 Jakub Jelinek <jakub@redhat.com>
PR middle-end/63974
* cfgexpand.c (expand_computed_goto): Don't call
convert_memory_address here.
2015-01-13 Richard Biener <rguenther@suse.de>
PR tree-optimization/64406

View File

@ -3060,8 +3060,6 @@ expand_computed_goto (tree exp)
{
rtx x = expand_normal (exp);
x = convert_memory_address (Pmode, x);
do_pending_stack_adjust ();
emit_indirect_jump (x);
}