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
/
pr39335_1.c
blob
dfa2465e34d78e9a9ae8534843ae83ec51acb729
1
/* { dg-options "-O2" } */
2
3
void
crash_me
(
int
num1
,
int
num2
,
char
*
in
,
char
*
out
)
4
{
5
int
i
,
j
;
6
for
(
j
=
0
;
j
<
num1
;
j
++)
7
for
(
i
=
0
;
i
<
num2
;
i
++)
8
*
out
++ = *
in
++;
9
}