repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
compiler: give error for non-int arguments to make
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
vect13.ads
blob
7aeac5e527a6ee27c17caa87cdbbfa904878c11f
1
package
Vect13
is
2
3
-- Constrained array types are vectorizable
4
type
Sarray
is array
(
1
..
4
)
of
Float
;
5
for
Sarray
'Alignment
use
16
;
6
7
function
"+"
(
X
,
Y
:
Sarray
)
return
Sarray
;
8
procedure
Add
(
X
,
Y
:
Sarray
;
R
:
out
Sarray
);
9
10
end
Vect13
;