diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2016-04-20 12:40:48 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2016-04-20 12:40:48 +0200 |
commit | 0c61772a122cc888d0aafffbaa35d4c95cc7abcc (patch) | |
tree | d453a67df3e66d1b84843f68fa59727adf489147 /gcc/ada/sem_ch12.adb | |
parent | 61d1b085b96c6f9aa6cc952e7161c4f0e41794c8 (diff) | |
download | gcc-0c61772a122cc888d0aafffbaa35d4c95cc7abcc.zip gcc-0c61772a122cc888d0aafffbaa35d4c95cc7abcc.tar.gz gcc-0c61772a122cc888d0aafffbaa35d4c95cc7abcc.tar.bz2 |
[multiple changes]
2016-04-20 Vincent Celier <celier@adacore.com>
* gnatcmd.adb: Do not invoke gprls when the invocation of "gnat
ls" includes the switch -V.
* clean.adb: "<target>-gnatclean -P" now calls "gprclean
--target=<target>"
* make.adb: "<target>-gnatmake -P" now calls "gprbuild
--target=<target>"
2016-04-20 Hristian Kirtchev <kirtchev@adacore.com>
* sem_ch12.adb (Qualify_Type): Do not perform
partial qualification when the immediate scope is a generic unit.
From-SVN: r235260
Diffstat (limited to 'gcc/ada/sem_ch12.adb')
-rw-r--r-- | gcc/ada/sem_ch12.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/sem_ch12.adb b/gcc/ada/sem_ch12.adb index e6d5af5..5f77f571 100644 --- a/gcc/ada/sem_ch12.adb +++ b/gcc/ada/sem_ch12.adb @@ -14052,7 +14052,7 @@ package body Sem_Ch12 is begin Result := Make_Identifier (Loc, Chars (Typ)); - if Present (Scop) and then Scop /= Standard_Standard then + if Present (Scop) and then not Is_Generic_Unit (Scop) then Result := Make_Selected_Component (Loc, Prefix => Make_Identifier (Loc, Chars (Scop)), |