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
/
pr113371.c
blob
46c4deb0db90b457fef71ad177c6461fbdf74862
1
/* { dg-do compile } */
2
/* { dg-additional-options "-O" } */
3
/* { dg-additional-options "-march=silvermont" { target { x86_64-*-* i?86-*-* } } } */
4
5
long
*
BN_uadd_ap
;
6
7
void
8
BN_uadd
(
int
dif
,
long
t1
)
9
{
10
long
*
rp
;
11
while
(
dif
)
12
{
13
dif
--;
14
t1
= *
BN_uadd_ap
;
15
*
rp
++ =
t1
;
16
if
(
t1
)
17
break
;
18
}
19
}