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
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr46499-2.c
blob
c3a264816d3fbce2e186908d816cf5dfe6feee55
1
/* PR middle-end/46499 */
2
/* { dg-do compile } */
3
/* { dg-options "-O -fno-tree-ccp -fno-tree-dominator-opts" } */
4
5
extern
void
abort
(
void
);
6
7
static
inline
int
8
foo
(
void
)
9
{
10
return
0
;
11
}
12
13
int
14
main
()
15
{
16
if
((
foo
() ==
1
) & (
foo
() ==
1
))
17
abort
();
18
return
0
;
19
}