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
/
attr-assume-5.c
blob
8aa0f361dad00d85c91f68041de70e478299644c
1
/* PR tree-optimization/107368 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2" } */
4
5
double
6
f4
(
double
x
)
7
{
8
[[
gnu
::
assume
(
x
&&
x
>
0.0
)]];
9
return
x
;
10
}