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
* gcc.dg/torture/stackalign/builtin-apply-2.c: Fix skip-if syntax.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
graphite
/
id-pr44676.c
blob
ad22cdec8a7f73fec8910d96d43b8428d21b88dd
1
/* { dg-options "-O2 -fgraphite-identity -fprofile-generate" } */
2
/* { dg-require-profiling "-fprofile-generate" } */
3
4
int
5
extend_options
(
int
h
,
int
map
,
int
x
,
int
y
,
int
dx
)
6
{
7
while
(
dx
--)
8
{
9
if
(
x
!=
dx
&&
y
!= -
x
)
10
map
++;
11
}
12
return
map
;
13
}