[COMMITTED,4/9] ada: Assert failure in repinfo
Commit Message
From: Javier Miranda <miranda@adacore.com>
Using switch gnatR4, the frontend crashes when generating information
for a private record type.
gcc/ada/
* repinfo.adb (List_Record_Info): Handle private record types.
Tested on x86_64-pc-linux-gnu, committed on master.
---
gcc/ada/repinfo.adb | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
@@ -521,7 +521,11 @@ package body Repinfo is
elsif Is_Record_Type (E) then
if List_Representation_Info >= 1 then
- List_Record_Info (E, Bytes_Big_Endian);
+ if Is_Private_Type (E) then
+ List_Record_Info (Full_View (E), Bytes_Big_Endian);
+ else
+ List_Record_Info (E, Bytes_Big_Endian);
+ end if;
-- Recurse into entities local to a record type