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
/
tree-ssa
/
pr98094.c
blob
f88534a16917864d36ef40100060fe7ef981ca46
1
/* PR tree-optimization/98084 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2" } */
4
5
struct
6
{
7
unsigned
a
:
10
;
8
}
b
;
9
10
int
c
;
11
void
e
();
12
void
d
()
13
{
14
c
=
b
.
a
;
15
if
(
c
==
8
||
c
==
0
)
16
;
17
else if
(
c
>
8
*
8
)
18
;
19
else if
(
c
<
8
*
8
)
20
e
();
21
}