aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/callind.c
blob: 70e6093cf4f4cbad927dbb27b11d52a7336afde4 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-require-effective-target indirect_calls } */
/* { dg-additional-options "-std=gnu89" } */

bar (foo, a)
     int (**foo) ();
{

  (foo)[1] = bar;

  foo[a] (1);
}