diff options
author | Piotr Trojanek <trojanek@adacore.com> | 2020-12-23 18:57:18 +0100 |
---|---|---|
committer | Pierre-Marie de Rodat <derodat@adacore.com> | 2021-05-03 05:28:23 -0400 |
commit | 4d3106a137899f65f5a3df87cacc330ff79c3def (patch) | |
tree | a2f24da24ec31cb5f683849cf0ec8924220cccce /gcc | |
parent | 0bfa2f3cc26612e9b814184bda45a13d98634ea0 (diff) | |
download | gcc-4d3106a137899f65f5a3df87cacc330ff79c3def.zip gcc-4d3106a137899f65f5a3df87cacc330ff79c3def.tar.gz gcc-4d3106a137899f65f5a3df87cacc330ff79c3def.tar.bz2 |
[Ada] Fix calls to Error_Msg_NE instead of Error_Msg_N
gcc/ada/
* freeze.adb (Freeze_Profile): Replace Error_Msg_NE with
Error_Msg_N; change to continuation message.
* sem_cat.adb, sem_ch10.adb, sem_ch12.adb, sem_ch5.adb: Replace
calls to Error_Msg_NE with calls to Error_Msg_N.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ada/freeze.adb | 4 | ||||
-rw-r--r-- | gcc/ada/sem_cat.adb | 10 | ||||
-rw-r--r-- | gcc/ada/sem_ch10.adb | 4 | ||||
-rw-r--r-- | gcc/ada/sem_ch12.adb | 12 | ||||
-rw-r--r-- | gcc/ada/sem_ch5.adb | 4 |
5 files changed, 16 insertions, 18 deletions
diff --git a/gcc/ada/freeze.adb b/gcc/ada/freeze.adb index bf20cbc..675cde3 100644 --- a/gcc/ada/freeze.adb +++ b/gcc/ada/freeze.adb @@ -3749,8 +3749,8 @@ package body Freeze is Error_Msg_NE ("?x?type of argument& is unconstrained array", Warn_Node, Formal); - Error_Msg_NE ("?x?foreign caller must pass bounds explicitly", - Warn_Node, Formal); + Error_Msg_N ("\?x?foreign caller must pass bounds explicitly", + Warn_Node); Error_Msg_Qual_Level := 0; end if; diff --git a/gcc/ada/sem_cat.adb b/gcc/ada/sem_cat.adb index ea02ecd..fe5d9e5 100644 --- a/gcc/ada/sem_cat.adb +++ b/gcc/ada/sem_cat.adb @@ -296,18 +296,16 @@ package body Sem_Cat is -- Add further explanation for Pure/Preelaborate common cases if Unit_Category = Pure then - Error_Msg_NE - ("\<<pure unit cannot depend on non-pure unit", - N, Depended_Entity); + Error_Msg_N + ("\<<pure unit cannot depend on non-pure unit", N); elsif Is_Preelaborated (Unit_Entity) and then not Is_Preelaborated (Depended_Entity) and then not Is_Pure (Depended_Entity) then - Error_Msg_NE + Error_Msg_N ("\<<preelaborated unit cannot depend on " - & "non-preelaborated unit", - N, Depended_Entity); + & "non-preelaborated unit", N); end if; end if; end Check_Categorization_Dependencies; diff --git a/gcc/ada/sem_ch10.adb b/gcc/ada/sem_ch10.adb index 807da29..3b5a980 100644 --- a/gcc/ada/sem_ch10.adb +++ b/gcc/ada/sem_ch10.adb @@ -1561,9 +1561,9 @@ package body Sem_Ch10 is Error_Msg_N ("simultaneous visibility of limited and " & "unlimited views not allowed", Item); - Error_Msg_NE + Error_Msg_N ("\unlimited view visible through context " - & "clause #", Item, It); + & "clause #", Item); exit; elsif Nkind (Unit_Name) = N_Identifier then diff --git a/gcc/ada/sem_ch12.adb b/gcc/ada/sem_ch12.adb index eacd63c..6279455 100644 --- a/gcc/ada/sem_ch12.adb +++ b/gcc/ada/sem_ch12.adb @@ -13828,9 +13828,9 @@ package body Sem_Ch12 is Actual_Discr := First_Discriminant (Act_T); while Formal_Discr /= Empty loop if Actual_Discr = Empty then - Error_Msg_NE + Error_Msg_N ("discriminants on actual do not match formal", - Actual, Gen_T); + Actual); Abandon_Instantiation (Actual); end if; @@ -13851,18 +13851,18 @@ package body Sem_Ch12 is elsif Base_Type (Formal_Subt) /= Base_Type (Etype (Actual_Discr)) then - Error_Msg_NE + Error_Msg_N ("types of actual discriminants must match formal", - Actual, Gen_T); + Actual); Abandon_Instantiation (Actual); elsif not Subtypes_Statically_Match (Formal_Subt, Etype (Actual_Discr)) and then Ada_Version >= Ada_95 then - Error_Msg_NE + Error_Msg_N ("subtypes of actual discriminants must match formal", - Actual, Gen_T); + Actual); Abandon_Instantiation (Actual); end if; diff --git a/gcc/ada/sem_ch5.adb b/gcc/ada/sem_ch5.adb index 1877bd84..61af51e 100644 --- a/gcc/ada/sem_ch5.adb +++ b/gcc/ada/sem_ch5.adb @@ -2037,8 +2037,8 @@ package body Sem_Ch5 is then null; else - Error_Msg_NE - ("container type does not support reverse iteration", N, Typ); + Error_Msg_N + ("container type does not support reverse iteration", N); end if; end if; end Check_Reverse_Iteration; |