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
/
pr66375.c
blob
2447b43c17b62852981695f68759b892187fac57
1
/* { dg-do run } */
2
3
int
a
;
4
extern
void
abort
(
void
);
5
int
main
()
6
{
7
int
c
=
0
;
8
for
(;
a
<
13
; ++
a
)
9
c
= (
signed char
)
c
-
11
;
10
if
(
c
!=
113
)
11
abort
();
12
return
0
;
13
}