Commit 542155d7 by Eric Botcazou Committed by Eric Botcazou

re PR target/24284 (ICE (Segmentation fault))

	PR target/24284
	* config/sparc/sparc.c (sparc_expand_prologue): Remove bogus PATTERN.

From-SVN: r105195
parent ab711ed3
2005-10-10 Eric Botcazou <ebotcazou@libertysurf.fr>
PR target/24284
* config/sparc/sparc.c (sparc_expand_prologue): Remove bogus PATTERN.
2005-10-10 Maciej W. Rozycki <macro@linux-mips.org>
* gcc.c (do_spec_1): Accept numeric characters in file name
......
......@@ -3918,7 +3918,7 @@ sparc_expand_prologue (void)
insn = emit_insn (gen_stack_pointer_inc (reg));
REG_NOTES (insn) =
gen_rtx_EXPR_LIST (REG_FRAME_RELATED_EXPR,
PATTERN (gen_stack_pointer_inc (GEN_INT (-actual_fsize))),
gen_stack_pointer_inc (GEN_INT (-actual_fsize)),
REG_NOTES (insn));
}
......
......@@ -5,6 +5,7 @@
* gcc.dg/ucnid-4.c: Likewise.
* gcc.dg/tree-ssa/gen-vect-25.c (main): Return a value.
* g++.dg/other/ucnid-1.C: Likewise.
* gcc.dg/sparc-frame-1.c: New test.
2005-10-10 Mark Mitchell <mark@codesourcery.com>
/* PR target/24284 */
/* { dg-do compile { target sparc*-*-* } } */
/* { dg-options "-O -g" } */
void do_run(void *ip)
{
char dummy[8192];
__asm__("" : : "g"(dummy));
goto *ip;
}
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