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
/
torture
/
pr55481.c
blob
26ba9ff7d998dbf30d7fc262ba7095a7d3f88b74
1
/* { dg-do run } */
2
3
int
main
()
4
{
5
signed char
result
=
0
;
6
int
n
;
7
for
(
n
=
0
;
n
<
13
; ++
n
)
8
{
9
int
tem
=
result
;
10
tem
=
tem
+
31
;
11
result
=
tem
;
12
}
13
if
(
result
!= -
109
)
14
__builtin_abort
();
15
return
0
;
16
}