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
* tree-loop-distribution.c (INCLUDE_ALGORITHM): New header file.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
uninit-24.c
blob
30fe1e510fdb991c1d96105555b18dc4dd95510f
1
/* { dg-do compile } */
2
/* { dg-options "-O -Wmaybe-uninitialized" } */
3
4
int
foo
(
int
x
)
5
{
6
int
y
;
7
if
(
x
)
8
return
*(&
y
+
1
);
/* { dg-bogus "may be used uninitialized" } */
9
return
0
;
10
}