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
PR middle-end/27945
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
uninit-13.c
blob
168939ab8573889b3c40eeb2c6c63080840e286a
1
/* { dg-do compile } */
2
/* { dg-options "-O -Wuninitialized" } */
3
4
typedef
_Complex
float
C
;
5
C
foo
()
6
{
7
C f
;
8
__imag__ f
=
0
;
9
return
f
;
/* { dg-warning "" "uninit" { xfail *-*-* } } */
10
}