PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / gomp / notify-new-function-3.c
blob033a4070302e5adfc5e688daab68e53e3c2e8c6d
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -ftree-parallelize-loops=2 -fdump-tree-ompexpssa" } */
4 void
5 foo (int *__restrict a, int *__restrict b, int *__restrict c)
7 int i;
8 for (i = 0; i < 1000; ++i)
9 c[i] = a[i] + b[i];
13 /* Check for new function notification in ompexpssa dump. */
14 /* { dg-final { scan-tree-dump-times "Added new ssa gimple function foo\\.\[\\\$_\]loopfn\\.0 to callgraph" 1 "ompexpssa2" } } */