This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/27882] [4.2 regression] segfault in ipa-inline.c, if (e->callee->local.disregard_inline_limits
- From: "tbm at cyrius dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 12 Jun 2006 20:18:37 -0000
- Subject: [Bug tree-optimization/27882] [4.2 regression] segfault in ipa-inline.c, if (e->callee->local.disregard_inline_limits
- References: <bug-27882-12387@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #20 from tbm at cyrius dot com 2006-06-12 20:18 -------
Finally, a *small* test case.
5336:tbm@reyes: ~/tmp/delta/bin] /usr/local/bin/gcc -c -O1 --param
ggc-min-expand=0 --param ggc-min-heapsize=0 mini.c
mini.c:27: internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.
5337:tbm@reyes: ~/tmp/delta/bin] /usr/local/bin/gcc -c --param ggc-min-expand=0
--param ggc-min-heapsize=0 mini.c
5338:tbm@reyes: ~/tmp/delta/bin] cat mini.c
struct sk_buff
{
}
raw_hdlc_proto;
struct tipc_msg *buf_msg (struct sk_buff *skb)
{
}
void buf_discard (struct sk_buff *skb)
{
}
void tipc_net_route_msg (struct sk_buff *buf);
static inline __attribute__ ((always_inline))
tipc_port_recv_msg (struct sk_buff *buf)
{
{
tipc_net_route_msg (buf);
}
}
void
tipc_net_route_msg (struct sk_buff *buf)
{
{
{
tipc_port_recv_msg (buf);
}
}
}
5339:tbm@reyes: ~/tmp/delta/bin]
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27882