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
2018-05-17 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
uninit-pr40943.c
blob
2b6e9131cb100021ab28d417068120de02db9aab
1
/* PR middle-end/40943 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -Wuninitialized" } */
4
5
void
6
foo
(
void
)
7
{
8
int
*
p
;
9
*
p
=
3
;
/* { dg-warning "is used uninitialized" } */
10
}