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
2016-11-21 Thomas Preud'homme <thomas.preudhomme@arm.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
opt54.adb
blob
b4aaa0900e64c82102c7dfc7a9d3b077630f0c7c
1
-- { dg-do compile }
2
-- { dg-options "-O2 -fdump-tree-optimized" }
3
4
function
Opt54
(
Val
,
Max
:
Integer
)
return
Integer
is
5
begin
6
if
Val
>=
Max
then
7
return
Max
;
8
end if
;
9
return
Val
+
1
;
10
end
;
11
12
-- { dg-final { scan-tree-dump-not "gnat_rcheck" "optimized" } }