mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-12-26 20:44:53 +08:00
6de9cd9a88
From-SVN: r81764
18 lines
235 B
C
18 lines
235 B
C
#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;
|
|
}
|