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++: regenerate opt urls
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr45101.c
blob
d9615725a0714777006330efedbcf69aee2252a2
1
/* PR rtl-optimization/45101 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -fgcse -fgcse-las" } */
4
5
struct
6
{
7
int
i
;
8
} *
s
;
9
10
extern
void
bar
(
void
);
11
12
void
foo
()
13
{
14
!
s
?
s
->
i
++ :
bar
();
15
}