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
* config/sparc/driver-sparc.c (cpu_names): Add SPARC-T5 entry.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
uninit-13-O0.c
blob
af80fa88ca97afbb9a372f0a63db583564d1a634
1
/* { dg-do compile } */
2
/* { dg-options "-Wuninitialized" } */
3
4
typedef
_Complex
float
C
;
5
C
foo
()
6
{
7
C f
;
8
__imag__ f
=
0
;
/* { dg-warning "is used" "unconditional" { xfail *-*-* } } */
9
return
f
;
10
}