diff mbox series

[COMMITTED] ada: Reorder components in Ada.Containers.Bounded_Doubly_Linked_Lists

Message ID 20230526073627.2069128-1-poulhies@adacore.com
State New
Headers show
Series [COMMITTED] ada: Reorder components in Ada.Containers.Bounded_Doubly_Linked_Lists | expand

Commit Message

Marc Poulhiès May 26, 2023, 7:36 a.m. UTC
From: Eric Botcazou <ebotcazou@adacore.com>

gcc/ada/

	* libgnat/a-cbdlli.ads (List): Move Nodes component to the end.

Tested on x86_64-pc-linux-gnu, committed on master.

---
 gcc/ada/libgnat/a-cbdlli.ads | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/gcc/ada/libgnat/a-cbdlli.ads b/gcc/ada/libgnat/a-cbdlli.ads
index 961a00726c4..b8810536458 100644
--- a/gcc/ada/libgnat/a-cbdlli.ads
+++ b/gcc/ada/libgnat/a-cbdlli.ads
@@ -276,12 +276,12 @@  private
    type Node_Array is array (Count_Type range <>) of Node_Type;
 
    type List (Capacity : Count_Type) is tagged record
-      Nodes  : Node_Array (1 .. Capacity);
       Free   : Count_Type'Base := -1;
       First  : Count_Type := 0;
       Last   : Count_Type := 0;
       Length : Count_Type := 0;
       TC     : aliased Tamper_Counts;
+      Nodes  : Node_Array (1 .. Capacity);
    end record with Put_Image => Put_Image;
 
    procedure Put_Image