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
/
uninit_func.adb
blob
ff5427ad7c9794a7d0797ea46839586ba8bfdd3c
1
-- { dg-do compile }
2
-- { dg-options "-O -Wall" }
3
4
function
uninit_func
(
A
,
B
:
Boolean
)
return
Boolean
is
5
C
:
Boolean
;
6
begin
7
if
A
then
8
C
:=
False
;
9
elsif
B
then
10
C
:=
True
;
11
end if
;
12
return
C
;
-- { dg-warning "may be used uninitialized" }
13
end
;