* doc/generic.texi (ANNOTATE_EXPR): Document 3rd operand.
[official-gcc.git] / gcc / testsuite / gnat.dg / unroll2.ads
blobefae982c4c6640102c5f7fd471e03fec59313465
1 package Unroll2 is
3 type Sarray is array (1 .. 4) of Float;
4 for Sarray'Alignment use 16;
6 function "+" (X, Y : Sarray) return Sarray;
7 procedure Add (X, Y : Sarray; R : out Sarray);
9 end Unroll2;