[Ada] Revert mistaken negation related to references to labels
authorPiotr Trojanek <trojanek@adacore.com>
Sat, 30 May 2020 18:54:49 +0000 (20:54 +0200)
committerPierre-Marie de Rodat <derodat@adacore.com>
Fri, 10 Jul 2020 09:16:23 +0000 (05:16 -0400)
gcc/ada/

* sem_ch8.adb (Find_Direct_Name): Fix code to match the comment.

gcc/ada/sem_ch8.adb

index 08414b2..f23db52 100644 (file)
@@ -6047,9 +6047,9 @@ package body Sem_Ch8 is
 
                begin
                   --  Generate reference unless this is an actual parameter
-                  --  (see comment below)
+                  --  (see comment below).
 
-                  if Reference_OK and then Is_Actual_Parameter then
+                  if Reference_OK and then not Is_Actual_Parameter then
                      Generate_Reference (E, N);
                      Set_Referenced (E, R);
                   end if;