This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug inline-asm/15429] internal compiler error: in emit_move_insn_1, at expr.c:3510
- From: "alonsoschaich at gmx dot de" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 15 Aug 2004 07:45:18 -0000
- Subject: [Bug inline-asm/15429] internal compiler error: in emit_move_insn_1, at expr.c:3510
- References: <20040513235049.15429.jgeorgal@uoc.gr>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From alonsoschaich at gmx dot de 2004-08-15 07:45 -------
(In reply to comment #6)
> *** Bug 17029 has been marked as a duplicate of this bug. ***
sorry. my browser crashed during upload ( thats why there's no description ).
Minimal case of this is:
---START CODE (bug.c)---
void test( void *v )
{
__asm__
(
"mov (%%eax), %%ecx\n"
:
: "a"(v[0])
);
}
---END CODE (bug.c)---
and it also fails on 3.3.4
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15429