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
Add _FloatN, _FloatNx tests for __builtin_fpclassify.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr60766.c
blob
6f16e3b7408b1c50eadb08ce621d4050bb419067
1
/* { dg-do run } */
2
3
int
m
=
9
;
4
5
int
main
()
6
{
7
int
n
,
x
;
8
9
n
=
m
;
10
for
(
x
=
0
;
x
<=
n
;
x
++)
11
if
(
n
==
x
+ (
x
+
1
) + (
x
+
2
))
12
return
0
;
13
14
__builtin_abort
();
15
}