Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
pr44133.c
blob: d3d0fe3a98624a263e2c7fc4a620627602d3159d [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-O2 -Wall" } */
struct
S
{
int
i
,
j
;
};
int
foo
(
int
l
)
{
struct
S s
;
s
.
j
=
l
-
22
;
return
s
.
i
+
s
.
j
;
/* { dg-warning ".s\.i. is used uninitialized" } */
}