diff options
author | Ed Schonberg <schonber@gnat.com> | 2001-10-26 01:12:44 +0000 |
---|---|---|
committer | Geert Bosch <bosch@gcc.gnu.org> | 2001-10-26 03:12:44 +0200 |
commit | 578053f234aaeacfcec9742a348cf87959df75d7 (patch) | |
tree | 23659a5d664ce116e5370a8fe2b85c8183685970 /gcc/ada/sem_elab.adb | |
parent | 0597ce0bbff39bfcd0e00f02c3da423f3afa21d9 (diff) | |
download | gcc-578053f234aaeacfcec9742a348cf87959df75d7.zip gcc-578053f234aaeacfcec9742a348cf87959df75d7.tar.gz gcc-578053f234aaeacfcec9742a348cf87959df75d7.tar.bz2 |
sem_elab.adb (Check_A_Call): refine message when call is in an instance but callee is not declared in the...
* sem_elab.adb (Check_A_Call): refine message when call is in an
instance but callee is not declared in the generic unit.
From-SVN: r46513
Diffstat (limited to 'gcc/ada/sem_elab.adb')
-rw-r--r-- | gcc/ada/sem_elab.adb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/ada/sem_elab.adb b/gcc/ada/sem_elab.adb index 943161a..53dc7f8 100644 --- a/gcc/ada/sem_elab.adb +++ b/gcc/ada/sem_elab.adb @@ -521,6 +521,7 @@ package body Sem_Elab is if Unit_Caller /= No_Unit and then Unit_Callee /= Unit_Caller + and then Unit_Callee /= No_Unit and then not Dynamic_Elaboration_Checks then E_Scope := Spec_Entity (Cunit_Entity (Unit_Caller)); |