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
/
pr105173.c
blob
3effb2996b0474adea0d69cf016459bd72b85183
1
/* { dg-do compile { target dfp } } */
2
/* { dg-options "-Ofast" } */
3
4
int
i
;
5
6
int
7
foo
(
char
c
,
_Decimal32 d
)
8
{
9
d
*=
i
;
10
d
*= -(
_Decimal64
)
c
;
11
return
d
;
12
}