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
Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
pr78153-1.c
blob
2530ba08e1ca53fd7df7d467b2da5602f42f6fe0
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fdump-tree-evrp-slim" } */
3
4
void
f
(
const char
*
s
)
5
{
6
if
(
__PTRDIFF_MAX__
<=
__builtin_strlen
(
s
))
7
__builtin_abort
();
8
}
9
10
/* { dg-final { scan-tree-dump-not "__builtin_abort" "evrp" } } */