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
* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr30311.c
blob
85ce75099cfa8dfc5403e32d6a5ffa19ce0ac2d1
1
/* ICE in subreg_get_info: bug 30311. */
2
/* { dg-do compile { target i?86-*-* x86_64-*-* } } */
3
inline
double
bar
(
double
x
)
4
{
5
long double
d
;
6
__asm__
(
""
:
"=t"
(
d
) :
"0"
(
x
));
7
return
d
;
8
}
9
10
double
foo
(
double
x
)
11
{
12
if
(
x
)
13
return
bar
(
x
);
14
else
15
return
bar
(
x
);
16
}