Trust uboot's device list only if it does not look suspicious.
[AROS.git] / compiler / purify / t_illread.c
blob8e90eada38e7c9b92a64d613184c63b1c3451fc9
1 #include <stdio.h>
3 int c;
5 void foo (int * x)
7 *x ++ = 1;
10 int main (int argc, char ** argv)
12 int * x;
13 int a, b;
15 x = &b;
17 a = *x; /* Uninitialized memory read */
19 return 0;