repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
build: Use core-linklibs everywhere.
[AROS.git]
/
compiler
/
purify
/
t_illread.c
blob
8e90eada38e7c9b92a64d613184c63b1c3451fc9
1
#include <stdio.h>
2
3
int
c
;
4
5
void
foo
(
int
*
x
)
6
{
7
*
x
++ =
1
;
8
}
9
10
int
main
(
int
argc
,
char
**
argv
)
11
{
12
int
*
x
;
13
int
a
,
b
;
14
15
x
= &
b
;
16
17
a
= *
x
;
/* Uninitialized memory read */
18
19
return
0
;
20
}