URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [graphite/] [id-27.c] - Rev 689
Compare with Previous | Blame | View Log
/* { 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; }