This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c/30429] New: internal compiler error: in emit_move_insn, at expr.c:2809
- From: "hald at kc dot rr dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 10 Jan 2007 22:17:31 -0000
- Subject: [Bug c/30429] New: internal compiler error: in emit_move_insn, at expr.c:2809
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
hald@td176> gcc -g -W -Wall xxq.c
xxq.c: In function `memcheck_posix_memalign':
xxq.c:23: internal compiler error: in emit_move_insn, at expr.c:2809
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.
hald@td176>
hald@td176> gcc -v
Reading specs from /usr/local/lib/gcc/ia64-hp-hpux11.23/3.4.3/specs
Configured with: ./configure : (reconfigured) ./configure : (reconfigured)
./configure : (reconfigured) ./configure : (reconfigured) ./configure :
(reconfigured) ./configure
Thread model: single
gcc version 3.4.3
hald@td176>
hald@td176> cat xxq.c
typedef long unsigned int size_t;
struct backtrace
{
int size;
void *array[128];
};
static int memcheck_posix_memalign_internal(const char *file,
int line,
const void *addr,
const struct backtrace *trace,
void **memptr,
size_t alignment,
size_t size);
static const struct backtrace *memcheck_get_backtrace(int skip_frames);
int memcheck_posix_memalign(const char *file,
int line,
const void *addr,
void **memptr,
size_t alignment,
size_t size)
{
(void)addr;
return(memcheck_posix_memalign_internal(file,
line,
((void)(file), (void)(size),
__builtin_return_address(0)),
memcheck_get_backtrace(2),
memptr,
alignment,
size));
}
hald@td176>
--
Summary: internal compiler error: in emit_move_insn, at
expr.c:2809
Product: gcc
Version: 3.4.3
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: hald at kc dot rr dot com
GCC build triplet: ia64-hp-hpux11.23
GCC host triplet: ia64-hp-hpux11.23
GCC target triplet: ia64-hp-hpux11.23
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30429