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
Implement C _FloatN, _FloatNx types.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr27136.c
blob
32b7bf123ef7d3dbfbe82ea5929735c4ba9abc01
1
/* { dg-do compile } */
2
/* { dg-options "-ffast-math" } */
3
4
void
foo
()
5
{
6
double
x
;
7
8
for
(
x
=
2
;
x
<
10
;
x
*=
x
)
9
;
10
}