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
/
pr27116-2.c
blob
9c748b245f5234760a1b957f3e34ba280476db6e
1
/* { dg-do run } */
2
3
extern
void
abort
(
void
);
4
5
int
main
(
void
)
6
{
7
volatile
long int
n
;
8
n
= -
2
;
9
10
if
((-
2147483647L
-
1L
) / (-
n
) != -
1073741824L
)
11
abort
();
12
return
0
;
13
}