repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR c++/37276
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr40460.C
blob
1d54df72b573c4736a0c6a755aa18c54d0181d46
1
/* { dg-do compile } */
2
3
void bar(int);
4
void foo(void)
5
{
6
for (int i = 0; i<1; ++i)
7
bar (i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i);
8
}
9