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
/
pr44391.c
blob
de9889668916cc9100270b91088c0a60954df752
1
/* { dg-options "-Os -fgraphite-identity -ffast-math" } */
2
3
void
byte_insert_op1
(
unsigned char
*
loc
,
unsigned char
*
end
,
unsigned
*
pto
)
4
{
5
while
(
end
!=
loc
)
6
*
pto
= *--
end
;
7
}