Fix an inconsistency, where GNAT was warning about references to unset
objects inside generic packages with no bodies but not inside ordinary
packages with no bodies.
gcc/ada/
* sem_ch7.adb (Analyze_Package_Declaration): Check references to
unset objects.
gcc/testsuite/
* gnat.dg/specs/discr5.ads: Expect new warnings.
* gnat.dg/specs/empty_variants.ads: Likewise.
* gnat.dg/specs/pack13.ads: Likewise.
(Context => N,
Is_Main_Unit => Parent (N) = Cunit (Main_Unit));
end if;
+
+ -- Warn about references to unset objects, which is straightforward
+ -- for packages with no bodies. For packages with bodies this is more
+ -- complicated, because some of the objects might be set between spec
+ -- and body elaboration, in nested or child packages, etc.
+
+ Check_References (Id);
end if;
-- Set Body_Required indication on the compilation unit node
subtype Rt is R(True);
subtype Rf is R(False);
- type R1 (D1 : Boolean) is new R (X) with record
+ type R1 (D1 : Boolean) is new R (X) with record -- { dg-warning "\"X\" may be referenced before it has a value" }
FF : Float;
case D1 is
when True =>
subtype R1t is R1 (True);
subtype R1f is R1 (False);
- type R2 (D2 : Boolean) is new R1 (Y) with record
+ type R2 (D2 : Boolean) is new R1 (Y) with record -- { dg-warning "\"Y\" may be referenced before it has a value" }
FFF: System.Address;
case D2 is
when True =>
subtype R2f is R2 (False);
end Discr5;
+
-- { dg-do compile }
--- { dg-options "-gnatdF" }
package Empty_Variants is
R : Rec;
- I : Integer := R.I;
+ I : Integer := R.I; -- { dg-warning "\"R\.I\" may be referenced before it has a value" }
J : Integer := R.J;
K : Integer := R.K;
L : Integer := R.L;
M : Integer := R.L;
end Empty_Variants;
+
A : Arr;
- package My_G is new G (Boolean, A(True).B);
+ package My_G is new G (Boolean, A(True).B); -- { dg-warning "\"A\" may be referenced before it has a value" }
end Pack13;