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
/
pr79818.c
blob
5c12089a7a6497c2383f1ca9054e006a27023cb6
1
/* { dg-do run } */
2
/* { dg-additional-options "-fwrapv" } */
3
4
static void
__attribute__
((
noinline
,
noclone
))
5
func
(
void
)
6
{
7
signed char
c
=
0
;
8
9
for
(;
c
>=
0
;
c
++);
10
11
if
(
c
!= -
128
)
12
__builtin_abort
();
13
}
14
15
int
main
(
int
argc
,
char
*
argv
[])
16
{
17
func
();
18
return
0
;
19
}