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
/
tree-ssa
/
reassoc-13.c
blob
799772535cfed46438ba493517b48d6e7d375c43
1
/* { dg-do compile } */
2
/* { dg-options "-O -ffast-math -fdump-tree-reassoc1 -fdump-tree-optimized" } */
3
4
double
foo
(
double
a
)
5
{
6
double
tmp
=
5.0
;
7
double
tmp2
=
a
+
tmp
;
8
tmp2
=
tmp2
-
a
;
9
return
a
+
tmp2
-
5.0
;
10
}
11
12
/* { dg-final { scan-tree-dump-not "\\\+ 0.0" "reassoc1" } } */
13
/* { dg-final { scan-tree-dump "return a_..D.;" "optimized" } } */