aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ada')
-rw-r--r--gcc/ada/sem_ch3.adb7
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ada/sem_ch3.adb b/gcc/ada/sem_ch3.adb
index be5ed67..a8baad9 100644
--- a/gcc/ada/sem_ch3.adb
+++ b/gcc/ada/sem_ch3.adb
@@ -9751,6 +9751,13 @@ package body Sem_Ch3 is
Set_Convention (Derived_Type, Convention (Parent_Base));
+ if Is_Tagged_Type (Derived_Type)
+ and then Present (Class_Wide_Type (Derived_Type))
+ then
+ Set_Convention (Class_Wide_Type (Derived_Type),
+ Convention (Class_Wide_Type (Parent_Base)));
+ end if;
+
-- Set SSO default for record or array type
if (Is_Array_Type (Derived_Type) or else Is_Record_Type (Derived_Type))