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
* gcc.dg/stack-check-5.c: Skip with -fstack-protector.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr49069.c
blob
f0fe1f2f0804f4a12e21643d01435c19ae6e7404
1
/* PR target/49069 */
2
/* { dg-do compile } */
3
/* { dg-options "-Os -fno-tree-forwprop -Wno-div-by-zero" } */
4
5
int
a
;
6
const unsigned long long
b
[
1
] = {
1ULL
};
7
extern
void
bar
(
int
);
8
9
void
10
foo
(
void
)
11
{
12
for
(
a
=
0
;
a
==
1
;
a
=
2
)
13
;
14
bar
(
b
[
0
] == (
a
==
0
?
a
:
a
/
0
));
15
}