Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / libmudflap / testsuite / libmudflap.c / pass34-frag.c
blob2dfd0ca2113c0c0cbba05034f54bacf954665c2a
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
5 void test (int *k)
7 if (*k > 5) { *k --; }
10 int z;
12 int main ()
14 /* z is initialized, but not via a pointer, so not instrumented */
15 z = rand ();
16 test (& z);
17 return 0;