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