(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
graphite/
id-27.c
       1  /* { dg-options "-O2 -fgraphite-identity -flto" { target lto } } */
       2  
       3  typedef long ll;
       4  void foo (int n, ll *p)
       5  {
       6    while (n--)
       7      *p += *p;
       8  }
       9  
      10  typedef long long lll;
      11  void bar (int n, lll *p)
      12  {
      13    while (n--)
      14      *p += *p;
      15  }
      16  
      17  int main() { return 0; }