Commit bbc96027 by Eric Botcazou Committed by Eric Botcazou

warn19.ad[sb]: New test.

	* gnat.dg/warn19.ad[sb]: New test.
	* gnat.dg/warn19_pkg.ads: New helper.

From-SVN: r265377
parent 2c2f8674
2018-10-22 Eric Botcazou <ebotcazou@adacore.com>
* gnat.dg/warn19.ad[sb]: New test.
* gnat.dg/warn19_pkg.ads: New helper.
2018-10-22 Richard Biener <rguenther@suse.de>
PR tree-optimization/87640
......
-- { dg-do compile }
-- { dg-options "-O2 -Wuninitialized" }
package body Warn19 is
procedure P_Init (X : out Bits) is
begin
Init (X);
end;
procedure Setup is
Data : Bits;
begin
P_Init (Data);
for I in Data'Range loop
P_Data (I) := Data (I);
end loop;
end;
end Warn19;
with Warn19_Pkg; use Warn19_Pkg;
package Warn19 is
P_Data : Bits;
procedure Setup;
end Warn19;
package Warn19_Pkg is
type Bits is array (1 .. 4) of Boolean;
procedure Init (X : out Bits);
end Warn19_Pkg;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment