Commit baf6e6a8 by Eric Botcazou Committed by Eric Botcazou

misc.c (gnat_printable_name): Always return a copy in GC memory.

	* gcc-interface/misc.c (gnat_printable_name): Always return a copy
	in GC memory.

From-SVN: r141638
parent 8b659f79
2008-11-06 Eric Botcazou <ebotcazou@adacore.com> 2008-11-06 Eric Botcazou <ebotcazou@adacore.com>
* gcc-interface/misc.c (gnat_printable_name): Always return a copy
in GC memory.
2008-11-06 Eric Botcazou <ebotcazou@adacore.com>
PR ada/19419 PR ada/19419
* gcc-interface/trans.c (gnat_to_gnu) <N_Assignment_Statement>: * gcc-interface/trans.c (gnat_to_gnu) <N_Assignment_Statement>:
Generate a call to memmove for an assignment between overlapping Generate a call to memmove for an assignment between overlapping
...@@ -603,10 +603,10 @@ gnat_printable_name (tree decl, int verbosity) ...@@ -603,10 +603,10 @@ gnat_printable_name (tree decl, int verbosity)
if (verbosity == 2) if (verbosity == 2)
{ {
Set_Identifier_Casing (ada_name, (char *) DECL_SOURCE_FILE (decl)); Set_Identifier_Casing (ada_name, (char *) DECL_SOURCE_FILE (decl));
ada_name = Name_Buffer; return ggc_strdup (Name_Buffer);
} }
else
return (const char *) ada_name; return ada_name;
} }
/* Expands GNAT-specific GCC tree nodes. The only ones we support /* Expands GNAT-specific GCC tree nodes. The only ones we support
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment