public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r12-1888] [Ada] Reuse Is_Subprogram_Or_Entry where possible
@ 2021-06-29 14:25 Pierre-Marie de Rodat
  0 siblings, 0 replies; only message in thread
From: Pierre-Marie de Rodat @ 2021-06-29 14:25 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:df3636e013f276a0d1fde5b6da1f504b748696db

commit r12-1888-gdf3636e013f276a0d1fde5b6da1f504b748696db
Author: Piotr Trojanek <trojanek@adacore.com>
Date:   Thu Apr 8 21:17:33 2021 +0200

    [Ada] Reuse Is_Subprogram_Or_Entry where possible
    
    gcc/ada/
    
            * freeze.adb (Freeze_All): Simplify by reusing
            Is_Subprogram_Or_Entry.
            * sem_ch11.adb (Analyze_Handled_Statement): Likewise.

Diff:
---
 gcc/ada/freeze.adb   | 2 +-
 gcc/ada/sem_ch11.adb | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gcc/ada/freeze.adb b/gcc/ada/freeze.adb
index 3ea4a99b84d..81e0e87d4d1 100644
--- a/gcc/ada/freeze.adb
+++ b/gcc/ada/freeze.adb
@@ -2179,7 +2179,7 @@ package body Freeze is
          elsif Is_Concurrent_Type (E) then
             Item := First_Entity (E);
             while Present (Item) loop
-               if (Is_Entry (Item) or else Is_Subprogram (Item))
+               if Is_Subprogram_Or_Entry (Item)
                  and then not Default_Expressions_Processed (Item)
                then
                   Process_Default_Expressions (Item, After);
diff --git a/gcc/ada/sem_ch11.adb b/gcc/ada/sem_ch11.adb
index 5a2c6a6828b..2af65ae2f83 100644
--- a/gcc/ada/sem_ch11.adb
+++ b/gcc/ada/sem_ch11.adb
@@ -435,7 +435,7 @@ package body Sem_Ch11 is
       --  postcondition, since in that case there are no source references, and
       --  we need to preserve deferred references from the enclosing scope.
 
-      if ((Is_Subprogram (Current_Scope) or else Is_Entry (Current_Scope))
+      if (Is_Subprogram_Or_Entry (Current_Scope)
            and then Chars (Current_Scope) /= Name_uPostconditions)
          or else Ekind (Current_Scope) in E_Block | E_Task_Type
       then


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-06-29 14:25 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-29 14:25 [gcc r12-1888] [Ada] Reuse Is_Subprogram_Or_Entry where possible Pierre-Marie de Rodat

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).