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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
dfp
/
pr108068.c
blob
a8798e9002022f4efc41ab226dcca6d061df8523
1
/* PR tree-optimization/108068 */
2
/* { dg-options "-O2" } */
3
4
int
5
main
()
6
{
7
_Decimal64 x
= -
1
;
8
while
(
x
!=
0
)
9
x
/=
10
;
10
double
d
=
x
;
11
if
(!
__builtin_signbit
(
d
))
12
__builtin_abort
();
13
}