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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
graphite
/
pr45297.c
blob
faa653a57792054f2305e58a2857ceef00f519cf
1
/* { dg-options "-Os -fgraphite-identity" } */
2
3
void
4
foo
(
int
*
p
)
5
{
6
int
*
q
=
p
+
1024
;
7
while
(
q
!=
p
)
8
*--
q
= *--
q
;
9
}