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
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
uninit-17.c
blob
8a95f15c5ae6c19421abb9a5301061b1d46e4374
1
/* { dg-do compile } */
2
/* { dg-options "-O -Wuninitialized" } */
3
4
typedef
_Complex
float
C
;
5
C
foo
(
int
cond
)
6
{
7
C f
;
8
__imag__ f
=
0
;
9
if
(
cond
)
10
{
11
__real__ f
=
1
;
12
return
f
;
13
}
14
return
f
;
/* { dg-warning "may be used" "unconditional" } */
15
}