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
/
gimplefe-28.c
blob
d2f6b4c5c3ddbfba97d787d67c887eff8a30c1bb
1
/* { dg-do compile { target sqrt_insn } } */
2
/* { dg-options "-fgimple -O2" } */
3
/* { dg-add-options sqrt_insn } */
4
5
double
__GIMPLE
6
f1
(
double
x
)
7
{
8
double
res
;
9
res
= .
SQRT
(
x
);
10
return
res
;
11
}
12
13
void
__GIMPLE
14
f2
(
double
x
)
15
{
16
.
SQRT
(
x
);
// Dead code
17
}