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
Handle peeling for alignment with masking
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
opt42.ads
blob
3d6a3c14a86b4cb826b625e8eedda692ab3cec7e
1
package
Opt42
is
2
3
type
Index_Type
is range
1
..
7
;
4
type
Row_Type
is array
(
Index_Type
)
of
Float
;
5
type
Array_Type
is array
(
Index_Type
)
of
Row_Type
;
6
7
function
"*"
(
Left
,
Right
:
in
Array_Type
)
return
Array_Type
;
8
9
end
Opt42
;