Commit b213221d by Tristan Gingold Committed by Tristan Gingold

alpha.c (alpha_end_function): Always generate .end directive on VMS.

2011-06-27  Tristan Gingold  <gingold@adacore.com>

	* config/alpha/alpha.c (alpha_end_function): Always generate .end
	directive on VMS.

From-SVN: r175522
parent 8062f281
2011-06-27 Tristan Gingold <gingold@adacore.com>
* config/alpha/alpha.c (alpha_end_function): Always generate .end
directive on VMS.
2011-06-27 Eric Botcazou <ebotcazou@adacore.com>
* config/sparc/sparc.c (sparc_frame_pointer_required): Return true if
......
......@@ -8159,7 +8159,8 @@ alpha_end_function (FILE *file, const char *fnname, tree decl ATTRIBUTE_UNUSED)
#endif
/* End the function. */
if (!flag_inhibit_size_directive)
if (TARGET_ABI_OPEN_VMS
|| !flag_inhibit_size_directive)
{
fputs ("\t.end ", file);
assemble_name (file, fnname);
......
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