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
Handle T_HRESULT types in CodeView records
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr68286.c
blob
d0392e85a65910d917dc28bc48e1e430c8ba00ae
1
/* PR target/68286 */
2
/* { dg-do compile } */
3
/* { dg-options "-O3" } */
4
5
int
a
,
b
,
c
;
6
int
fn1
()
7
{
8
int
d
[] = {
0
};
9
for
(;
c
;
c
++)
10
{
11
float
e
=
c
;
12
if
(
e
)
13
d
[
0
]++;
14
}
15
b
=
d
[
0
];
16
return
a
;
17
}