diff mbox series

[Ada] Fix missing back-annotation for Out parameter

Message ID 1635093.1cYGhfoqiW@polaris
State New
Headers show
Series [Ada] Fix missing back-annotation for Out parameter | expand

Commit Message

Eric Botcazou May 9, 2020, 8:26 p.m. UTC
This happens when it is passed by copy and not passed in.

Tested on x86-64/Linux, applied on the mainline.


2020-05-09  Eric Botcazou  <ebotcazou@adacore.com>

	* gcc-interface/decl.c (gnat_to_gnu_param): Also back-annotate the
	mechanism in the case of an Out parameter only passed by copy-out.
diff mbox series

Patch

diff --git a/gcc/ada/gcc-interface/decl.c b/gcc/ada/gcc-interface/decl.c
index 9c1acd9f23f..ec9cc38a2c9 100644
--- a/gcc/ada/gcc-interface/decl.c
+++ b/gcc/ada/gcc-interface/decl.c
@@ -5447,7 +5447,10 @@  gnat_to_gnu_param (Entity_Id gnat_param, tree gnu_param_type, bool first,
       && (!type_requires_init_of_formal (Etype (gnat_param))
 	  || Is_Init_Proc (gnat_subprog)
 	  || by_return))
-    return gnu_param_type;
+    {
+      Set_Mechanism (gnat_param, By_Copy);
+      return gnu_param_type;
+    }
 
   gnu_param = create_param_decl (gnu_param_name, gnu_param_type);
   TREE_READONLY (gnu_param) = ro_param || by_ref || by_component_ptr;