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
libgfortran/ChangeLog:
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr41619.c
blob
9c164e3a60faaaf86bfe162d70feafbb25ea42fc
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fno-ira-share-save-slots" } */
3
4
struct
A
{};
5
6
int
foo
();
7
8
struct
A
bar
(
double
x
)
9
{
10
double
y
;
11
if
(
foo
())
12
y
=
1
/
x
;
13
return
bar
(
y
);
14
}