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
/
vrp-float-3.c
blob
c659abb6cc0dcb3d6b15fcb3cddac0b6f398e1d5
1
// { dg-do compile }
2
// { dg-options "-O2 -fdisable-tree-ethread -fdump-tree-evrp" }
3
4
void
link_error
();
5
6
void
7
foo
(
double
x
,
double
y
)
8
{
9
if
(
x
==
y
)
10
{
11
if
(
__builtin_isnan
(
x
))
12
link_error
();
13
if
(
__builtin_isnan
(
y
))
14
link_error
();
15
}
16
}
17
18
// { dg-final { scan-tree-dump-not "link_error" "evrp" } }