diff options
author | Ronan Desplanques <desplanques@adacore.com> | 2024-11-19 10:10:31 +0100 |
---|---|---|
committer | Marc Poulhiès <dkm@gcc.gnu.org> | 2024-12-12 10:57:58 +0100 |
commit | 003ed7d39343cdfb9dde70980c2aa67454bcacef (patch) | |
tree | 952b292f2fb6b11a1dad0ab5705b0b44a533b519 /gcc/ada/sem_ch3.adb | |
parent | fac69bd389303362efc0ae6e86fc08f3fe99946a (diff) | |
download | gcc-003ed7d39343cdfb9dde70980c2aa67454bcacef.zip gcc-003ed7d39343cdfb9dde70980c2aa67454bcacef.tar.gz gcc-003ed7d39343cdfb9dde70980c2aa67454bcacef.tar.bz2 |
ada: Accept static strings with External_Initialization
Before this patch, the argument to the External_Initialization aspect
had to be a string literal. This patch extends the possibilities so that
any static string is accepted.
A new helper function, Is_OK_Static_Expression_Of_Type, is introduced,
and in addition to the main change of this patch a couple of calls to
that helper function are added in other places to replace equivalent
inline code.
gcc/ada/ChangeLog:
* sem_eval.ads (Is_OK_Static_Expression_Of_Type): New function.
* sem_eval.adb (Is_OK_Static_Expression_Of_Type): Likewise.
* sem_ch13.adb (Check_Expr_Is_OK_Static_Expression): Use new function.
* sem_prag.adb (Check_Expr_Is_OK_Static_Expression): Likewise.
* sem_ch3.adb (Apply_External_Initialization): Accept static strings
for the parameter.
Diffstat (limited to 'gcc/ada/sem_ch3.adb')
-rw-r--r-- | gcc/ada/sem_ch3.adb | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/gcc/ada/sem_ch3.adb b/gcc/ada/sem_ch3.adb index f88c5ad..a5d69c3 100644 --- a/gcc/ada/sem_ch3.adb +++ b/gcc/ada/sem_ch3.adb @@ -3906,15 +3906,22 @@ package body Sem_Ch3 is Set_Expression (N, Error); E := Error; - if Nkind (Def) /= N_String_Literal then - Error_Msg_N - ("External_Initialization aspect expects a string literal value", - Specification); - return; - end if; + case Is_OK_Static_Expression_Of_Type (Def, Standard_String) is + when Static => + null; + + when Not_Static => + Error_Msg_N + ("External_Initialization aspect expects a static string", + Specification); + return; + + when Invalid => + return; + end case; if not (Is_String_Type (T) - or else Is_RTE (Base_Type (T), RE_Stream_Element_Array)) + or else Is_RTE (Base_Type (T), RE_Stream_Element_Array)) then Error_Msg_N ("External_Initialization aspect can only be applied to objects " @@ -3924,7 +3931,8 @@ package body Sem_Ch3 is end if; declare - S : constant String := Stringt.To_String (Strval (Def)); + S : constant String := + Stringt.To_String (Strval (Expr_Value_S (Def))); begin if System.OS_Lib.Is_Absolute_Path (S) then Data_Path := Name_Find (S); |