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
arm: fix typo in dg-require-effective-target [PR118089]
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
pr97457.c
blob
506ba249b00035592e3b4afe3fadb2bd6ad9059e
1
/* { dg-additional-options "-O3" } */
2
3
int
a
;
4
long
c
;
5
signed char
d
(
char
e
,
char
f
) {
return
e
+
f
; }
6
int
main
(
void
) {
7
for
(;
a
<=
1
;
a
++) {
8
c
= -
8
;
9
for
(;
c
!=
3
;
c
=
d
(
c
,
1
))
10
;
11
}
12
char
b
=
c
;
13
if
(
b
!=
3
)
14
__builtin_abort
();
15
}