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
Update concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
Wstrict-overflow-10.c
blob
d2c259728cb4cd74259700f5833071a6511cb8fb
1
/* { dg-do compile } */
2
/* { dg-options "-fstrict-overflow -O2 -Wstrict-overflow=1" } */
3
4
/* Source: Ian Lance Taylor. */
5
6
int
7
foo
(
int
i
)
8
{
9
return
__builtin_abs
(
i
) >=
0
;
10
}