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
runtime: copy more of scheduler from Go 1.7 runtime
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
opt56.adb
blob
9566f51c86bb26b5e44e71b059296ee29af04ccf
1
-- { dg-do compile }
2
-- { dg-options "-O3" }
3
4
package body
Opt56
is
5
6
function
F
(
Values
:
Vector
)
return
Boolean
is
7
Result
:
Boolean
:=
True
;
8
begin
9
for
I
in
Values
'Range
loop
10
Result
:=
Result
and
Values
(
I
) >=
0.0
;
11
end loop
;
12
return
Result
;
13
end
;
14
15
end
Opt56
;