[Bug target/24355] Executable stack error building Ada

2005-10-14 Thread charlet at gcc dot gnu dot org
--- Comment #2 from charlet at gcc dot gnu dot org 2005-10-14 08:17 --- There is no bug here, you found the solution which is to modify the settings of your OS. Arno -- charlet at gcc dot gnu dot org changed: What|Removed |Added

[Bug target/24355] Executable stack error building Ada

2005-10-13 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-10-13 19:36 --- This also effects some C code too like: int f(int (*fptr)(void)) { return fptr(); } int main(void) { int t; int g(void){ return t; } t = 2; f(g); } Compile at -O0 and you will see that it fails too.