This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug target/10129] Ada bootstrap fails on PPC-Darwin - invalid assembler emitted - PIC related
- From: "pinskia at physics dot uc dot edu" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 2 Jul 2003 17:17:02 -0000
- Subject: [Bug target/10129] Ada bootstrap fails on PPC-Darwin - invalid assembler emitted - PIC related
- References: <20030318040600.10129.bosch@gcc.gnu.org>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=10129
------- Additional Comments From pinskia at physics dot uc dot edu 2003-07-02 17:17 -------
Okay I think I figured out how this one is happening, now the problem is figuring out how to fix it.
The problem is the Darwin's backend depends on current_function_decl which Ada changes the
name inside it for some reason to be one with a .n (where n is an integer). So the problem is the
hashtable will not caught every thing so on when the setjmp is generated, current_function_decl is
without the .n but when the function is generated it has a .n, so this is confusing Darwin's
backend. Now I do not know the currect fix at all and this problem seems to be needed to be fixed
in the Ada frontend.