view gcc/testsuite/gcc.dg/graphite/id-27.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* { dg-options "-O2 -fgraphite-identity -flto" { target lto } } */

typedef long ll;
void foo (int n, ll *p)
{
  while (n--)
    *p += *p;
}

typedef long long lll;
void bar (int n, lll *p)
{
  while (n--)
    *p += *p;
}

int main() { return 0; }