I'm not sure if this is a bug in my version of gcc (4.8.5) or gprbuild (2.2.0) but when I try to compile a project there is a specific function whose body causes the compiler to crash with a STORAGE_ERROR
. When I build with -cargs -v
I see that gnatl -quiet ...
is the command that is most recently output before the crash.
The function in question produces an informative string from a tag belonging to a particular type hierarchy. It looks something like:
function Tag_To_String (From : Ada.Tags.Tag) return String is (
if From = A'Tag then "This is tag A"
elsif From = B'Tag then "This is tag B"
-- ...
elsif From = Z'Tag then "This is tag Z"
else "");
Whereas I can get it to successfully compile if I change that body to:
function Tag_To_String (From : Ada.Tags.Tag) return String is ("");
The error I get is exactly:
gcc -c -gnat12 sourcefile.adb
raised STORAGE_ERROR : stack overflow or erroneous memory access
gprbuild: *** compilation phase failed
Any idea why gcc can't seem to compile this particular function?
The following program works properly using the 2018 release of GNAT and GPS.
Note that I have edited the code to use a function expression. It still works on the GNAT/GPS 2018 release. This version was compiled with gprbuild -d -PD