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
/
vect
/
pr83338.c
blob
e266063041195383f1fc686557da8de4a2dc1706
1
/* PR tree-optimization/83338 */
2
/* { dg-do compile } */
3
4
void
5
foo
(
char
**
p
,
char
**
q
,
__PTRDIFF_TYPE__
*
r
)
6
{
7
int
i
;
8
for
(
i
=
0
;
i
<
1024
;
i
++)
9
r
[
i
] =
p
[
i
] -
q
[
i
];
10
}