aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/analyzer/symbolic-8.c
blob: f9c3596cbbcc99a3fdaad016d676736c5ef82ef6 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* Merger where "arr" has two different symbolic bindings.  */

void test (int i, int j, int flag)
{
  int arr[16];

  if (flag)
    arr[i] = 42;
  else
    arr[j] = 17;
}