diff options
Diffstat (limited to 'gcc/ada/live.adb')
-rw-r--r-- | gcc/ada/live.adb | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/gcc/ada/live.adb b/gcc/ada/live.adb index bca9cf8..5a74f8b 100644 --- a/gcc/ada/live.adb +++ b/gcc/ada/live.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 2000-2020, Free Software Foundation, Inc. -- +-- Copyright (C) 2000-2021, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -23,14 +23,18 @@ -- -- ------------------------------------------------------------------------------ -with Atree; use Atree; -with Einfo; use Einfo; -with Lib; use Lib; -with Nlists; use Nlists; -with Sem_Aux; use Sem_Aux; -with Sem_Util; use Sem_Util; -with Sinfo; use Sinfo; -with Types; use Types; +with Atree; use Atree; +with Einfo; use Einfo; +with Einfo.Entities; use Einfo.Entities; +with Einfo.Utils; use Einfo.Utils; +with Lib; use Lib; +with Nlists; use Nlists; +with Sem_Aux; use Sem_Aux; +with Sem_Util; use Sem_Util; +with Sinfo; use Sinfo; +with Sinfo.Nodes; use Sinfo.Nodes; +with Sinfo.Utils; use Sinfo.Utils; +with Types; use Types; package body Live is @@ -82,9 +86,6 @@ package body Live is function Spec_Of (N : Node_Id) return Entity_Id; -- Given a subprogram body N, return defining identifier of its declaration - -- ??? the body of this package contains no comments at all, this - -- should be fixed. - ------------- -- Body_Of -- ------------- |