Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / libmudflap / testsuite / libmudflap.c / pass32-frag.c
blobd7f223279761cdd68d598c2b0f56daf7fd3f4a3d
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
5 struct foo { char z[10]; };
7 char * get_z (struct foo *this)
9 return & this->z[0] /* the `this' pointer is not dereferenced! */;
12 int main ()
14 struct foo k;
15 char *n = get_z (& k);
16 srand ((int)(__mf_uintptr_t) n); /* use the pointer value */
17 return 0;