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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
gcc.dg
/
uninit-12.c
blob
7889e5370e5d5dbaf1026ea6d026d91d6207b0a9
1
/* PR 23497 */
2
/* { dg-do compile } */
3
/* { dg-options "-O -Wuninitialized" } */
4
5
typedef
_Complex
float
C
;
6
C
foo
()
7
{
8
C f
;
9
__real__ f
=
0
;
10
__imag__ f
=
0
;
11
return
f
;
12
}