diff options
author | Piotr Trojanek <trojanek@adacore.com> | 2024-01-29 13:42:03 +0100 |
---|---|---|
committer | Marc Poulhiès <poulhies@adacore.com> | 2024-05-16 10:49:26 +0200 |
commit | 1d992c40e77fa61ebdb75d1342b35f58b9b98f12 (patch) | |
tree | 01c91d7cecb207eca6bd0789fbbbba56d6882c90 /gcc | |
parent | 61751ee563104aa87a66ac712e97ed80cf52eec2 (diff) | |
download | gcc-1d992c40e77fa61ebdb75d1342b35f58b9b98f12.zip gcc-1d992c40e77fa61ebdb75d1342b35f58b9b98f12.tar.gz gcc-1d992c40e77fa61ebdb75d1342b35f58b9b98f12.tar.bz2 |
ada: Fix alphabetic ordering of aspect identifiers
Code cleanup.
gcc/ada/
* aspects.ads (Aspect_Id): Fix ordering.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ada/aspects.ads | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/aspects.ads b/gcc/ada/aspects.ads index eb5ab1a..ce393d4 100644 --- a/gcc/ada/aspects.ads +++ b/gcc/ada/aspects.ads @@ -198,9 +198,9 @@ package Aspects is Aspect_Favor_Top_Level, -- GNAT Aspect_Full_Access_Only, Aspect_Ghost, -- GNAT + Aspect_Import, Aspect_Independent, Aspect_Independent_Components, - Aspect_Import, Aspect_Inline, Aspect_Inline_Always, -- GNAT Aspect_Interrupt_Handler, @@ -971,6 +971,7 @@ package Aspects is Aspect_Shared_Passive => Always_Delay, Aspect_Simple_Storage_Pool => Always_Delay, Aspect_Simple_Storage_Pool_Type => Always_Delay, + Aspect_Stable_Properties => Always_Delay, Aspect_Static_Predicate => Always_Delay, Aspect_Storage_Model_Type => Always_Delay, Aspect_Storage_Pool => Always_Delay, @@ -1032,7 +1033,6 @@ package Aspects is Aspect_Relaxed_Initialization => Never_Delay, Aspect_Side_Effects => Never_Delay, Aspect_SPARK_Mode => Never_Delay, - Aspect_Stable_Properties => Always_Delay, Aspect_Static => Never_Delay, Aspect_Subprogram_Variant => Never_Delay, Aspect_Synchronization => Never_Delay, |