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
Fix broken MinGW build of gcc.c
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
lto
/
pr64684_0.c
blob
89883504d20824b66d452a5d8aa81a8126862453
1
/* { dg-lto-do run } */
2
/* { dg-lto-options { { -O1 -flto } } } */
3
4
extern
void
fn2
(
void
);
5
extern
int
a
;
6
7
void
8
fn1
()
9
{
10
a
= -
1
;
11
fn2
();
12
a
&=
1
;
13
}