blob: 95d762cc1aae1851432dadf321867466c10a6d6d [file] [log] [blame]
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void test (int *k)
{
if (*k > 5) { *k --; }
}
int main ()
{
int z;
/* z is initialized, but not via a pointer, so not instrumented */
z = rand ();
test (& z);
return 0;
}