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
/
id-27.c
blob
d2d4cd36bb8538c7b7e9d6fa6e91d8471439a242
1
/* { dg-options "-O2 -fgraphite-identity -flto" { target lto } } */
2
3
typedef
long
ll
;
4
void
foo
(
int
n
,
ll
*
p
)
5
{
6
while
(
n
--)
7
*
p
+= *
p
;
8
}
9
10
typedef
long long
lll
;
11
void
bar
(
int
n
,
lll
*
p
)
12
{
13
while
(
n
--)
14
*
p
+= *
p
;
15
}
16
17
int
main
() {
return
0
; }