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
/
pr26899.c
blob
87d8a3c52ca4a4c763853484f65f39284adaa676
1
/* { dg-options "-fstrict-overflow -fdump-tree-gimple" } */
2
3
int
foo
(
int
i
,
int
j
)
4
{
5
return
(
i
<
j
+
1
) || (
j
>
i
-
1
);
6
}
7
8
/* { dg-final { scan-tree-dump "j >= i" "gimple" } } */
9