diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2018-05-28 08:53:13 +0000 |
---|---|---|
committer | Pierre-Marie de Rodat <pmderodat@gcc.gnu.org> | 2018-05-28 08:53:13 +0000 |
commit | c8e95568a1fa2957eca057c659497aed2b58bfd3 (patch) | |
tree | 7220c643532ca5e35fed764a54d814d0b6f84c44 /gcc/dwarf2asm.c | |
parent | 500b21ddb7ff3546e9b7f100b7414347661c7fb9 (diff) | |
download | gcc-c8e95568a1fa2957eca057c659497aed2b58bfd3.zip gcc-c8e95568a1fa2957eca057c659497aed2b58bfd3.tar.gz gcc-c8e95568a1fa2957eca057c659497aed2b58bfd3.tar.bz2 |
[Ada] Minor tweak to output of -gnatR
This changes the output of -gnatR for extensions of tagged record types to
avoid displaying the internal _Parent component, which overlaps with other
components and is thus more confusing than helpful.
For the following hierarchy:
type R1 is tagged record
I : Integer;
end record;
type R2 is new R1 with record
C : Character;
end record;
the output -gnatR must now be:
for R1'Object_Size use 128;
for R1'Value_Size use 96;
for R1'Alignment use 8;
for R1 use record
_Tag at 0 range 0 .. 63;
I at 8 range 0 .. 31;
end record;
for R2'Object_Size use 192;
for R2'Value_Size use 136;
for R2'Alignment use 8;
for R2 use record
_Tag at 0 range 0 .. 63;
I at 8 range 0 .. 31;
C at 16 range 0 .. 7;
end record;
2018-05-28 Eric Botcazou <ebotcazou@adacore.com>
gcc/ada/
* repinfo.adb (Compute_Max_Length): Skip _Parent component.
(List_Record_Layout): Likewise.
From-SVN: r260819
Diffstat (limited to 'gcc/dwarf2asm.c')
0 files changed, 0 insertions, 0 deletions