aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr82697.c
blob: 57da8a264b95f67ca4350f4c41cf7ce03a4358fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* { dg-do run } */

__attribute__((noinline,noclone))
void test(int *pi, long *pl, int f)
{
  *pl = 0;

  *pi = 1;

  if (f)
    *pl = 2;
}

int main()
{
  void *p = __builtin_malloc(sizeof (long));

  test(p, p, 0);

  if (*(int *)p != 1)
    __builtin_abort ();
  return 0;
}