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
Require target lra in gcc.dg/pr108095.c
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr68112.c
blob
9c7a59c650e68ecd363e3144a78686a71cc032f7
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -Waggressive-loop-optimizations" } */
3
/* { dg-require-effective-target int32plus } */
4
5
int
*
a
;
6
7
void
8
foo
()
9
{
10
for
(
int
i
=
0
;
i
<
65536
;
i
++)
11
*
a
=
i
<<
24
;
12
}