This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: GCC 3.4.6 __builtin_apply problem for custom target
- From: Eric Christopher <echristo at apple dot com>
- To: Roland Persson <roland dot persson at blaze dot com>
- Cc: gcc at gcc dot gnu dot org
- Date: Wed, 31 May 2006 14:49:55 -0700
- Subject: Re: GCC 3.4.6 __builtin_apply problem for custom target
- References: <01ab01c684f7$3b4f9e60$800101df@helicon>
This SIGSEGV happens here:
mark_jump_label (x=0x0, insn=0xb7f34b00, in_mem=0) at
../../gcc/gcc/jump.c:1381
1381 RTX_CODE code = GET_CODE (x);
(gdb) where
#0 mark_jump_label (x=0x0, insn=0xb7f34b00, in_mem=0)
at ../../gcc/gcc/jump.c:1381
#1 0x08123eee in mark_jump_label (x=0xb7f7c540, insn=0xb7f34b00,
in_mem=0)
at ../../gcc/gcc/jump.c:1469
The thing to figure out is why you're passing x=0x0 into
mark_jump_label.
-eric