Commit cf45cd09 by Tristan Gingold Committed by Tristan Gingold

alpha.c (alpha_start_function): Adjust condition to create VMS trampoline entry point.

2011-12-20  Tristan Gingold  <gingold@adacore.com>

	* config/alpha/alpha.c (alpha_start_function): Adjust condition to
	create VMS trampoline entry point.

From-SVN: r182521
parent 8c3db96e
2011-12-20 Tristan Gingold <gingold@adacore.com>
* config/alpha/alpha.c (alpha_start_function): Adjust condition to
create VMS trampoline entry point.
2011-12-19 Richard Sandiford <rdsandiford@googlemail.com>
PR rtl-optimization/42839
......@@ -7935,7 +7935,8 @@ alpha_start_function (FILE *file, const char *fnname,
if (TARGET_ABI_OPEN_VMS
&& !TREE_PUBLIC (decl)
&& DECL_CONTEXT (decl)
&& !TYPE_P (DECL_CONTEXT (decl)))
&& !TYPE_P (DECL_CONTEXT (decl))
&& TREE_CODE (DECL_CONTEXT (decl)) != TRANSLATION_UNIT_DECL)
{
strcpy (tramp_label, fnname);
strcat (tramp_label, "..tr");
......
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