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
Implement C _FloatN, _FloatNx types.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
uninit-I-O0.c
blob
761f65b485b1f97238133f990c9147cf2124415e
1
/* { dg-do compile } */
2
/* { dg-options "-Wuninitialized" } */
3
4
int
sys_msgctl
(
void
)
5
{
6
struct
{
int
mode
; }
setbuf
;
7
return
setbuf
.
mode
;
/* { dg-warning "'setbuf\.mode' is used uninitialized in this function" } */
8
}