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
/
pr26763-2.c
blob
7e9dc39bc18a93d050324c0d256cf2878de586dc
1
/* { dg-do run } */
2
3
extern
void
abort
(
void
);
4
5
int
try
(
char
*
a
,
__SIZE_TYPE__ d
)
6
{
7
return
a
+
d
>
a
;
8
}
9
10
int
main
(
void
)
11
{
12
char
bla
[
100
];
13
14
if
(
try
(
bla
+
50
, -
1
))
15
abort
();
16
17
return
0
;
18
}