mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-25 14:15:51 +08:00
addr2_p.ads: Bump size of array to 9.
* gnat.dg/addr2_p.ads: Bump size of array to 9. From-SVN: r128295
This commit is contained in:
parent
89675e7349
commit
7a8faae861
@ -1,3 +1,7 @@
|
||||
2007-09-09 Eric Botcazou <ebotcazou@adacore.com>
|
||||
|
||||
* gnat.dg/addr2_p.ads: Bump size of array to 9.
|
||||
|
||||
2007-09-09 Ira Rosen <irar@il.ibm.com>
|
||||
|
||||
* gcc.dg/vect/vect.exp: Compile tests starting with slp-.
|
||||
|
@ -1,10 +1,10 @@
|
||||
|
||||
package addr2_p is
|
||||
|
||||
type Block is array (1 .. 4) of Integer;
|
||||
type Block is array (1 .. 9) of Integer;
|
||||
|
||||
procedure Process (Blk : Block);
|
||||
|
||||
B1 : constant Block := Block'((1,2,3,4));
|
||||
B2 : constant Block := (1,2,3,4);
|
||||
B1 : constant Block := Block'((1,2,3,4,5, others => 0));
|
||||
B2 : constant Block := (1,2,3,4,5, others => 0);
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user