From 2bc894d9cff5cee4ae01ed30bae16f179329bc61 Mon Sep 17 00:00:00 2001 From: Eric Botcazou Date: Thu, 27 Mar 2008 18:53:02 +0000 Subject: [PATCH] decl.c (gnat_to_gnu_entity): Also set the public flag if the procedure is imported. * decl.c (gnat_to_gnu_entity) : Also set the public flag if the procedure is imported. From-SVN: r133650 --- gcc/ada/ChangeLog | 8 ++++++-- gcc/ada/decl.c | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 7d0880d5008..9a2e07f8d9a 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,8 @@ +2008-03-27 Eric Botcazou + + * decl.c (gnat_to_gnu_entity) : Also set the public flag + if the procedure is imported. + 2008-03-26 Arnaud Charlet * adaint.c: Fix warnings. @@ -22,8 +27,7 @@ 2008-03-26 Thomas Quinot -PR ada/33688 - + PR ada/33688 * g-socket.ads, g-socket.adb (Options, Set_Socket_Option, Get_Socket_Option): Add support for Receive_Packet_Info. diff --git a/gcc/ada/decl.c b/gcc/ada/decl.c index 0db79b57646..88198745fa8 100644 --- a/gcc/ada/decl.c +++ b/gcc/ada/decl.c @@ -3550,7 +3550,7 @@ gnat_to_gnu_entity (Entity_Id gnat_entity, tree gnu_expr, int definition) tree gnu_ext_name = create_concat_name (gnat_entity, NULL); Entity_Id gnat_param; bool inline_flag = Is_Inlined (gnat_entity); - bool public_flag = Is_Public (gnat_entity); + bool public_flag = Is_Public (gnat_entity) || imported_p; bool extern_flag = (Is_Public (gnat_entity) && !definition) || imported_p; bool pure_flag = Is_Pure (gnat_entity); -- 2.30.2