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++: Fix ICE with #embed/RAW_DATA_CST after list conversion [PR118671]
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
dfp
/
pr94111.c
blob
ea3a132270a28c3fbd0b3dc2b37b0a89dfd35996
1
/* PR middle-end/94111 */
2
/* { dg-do run } */
3
/* { dg-options "-O2" } */
4
5
int
6
main
()
7
{
8
_Decimal32 d
= (
_Decimal32
)
__builtin_inff
();
9
if
(!
__builtin_isinf
((
double
)
d
))
10
__builtin_abort
();
11
return
0
;
12
}