repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
warn
/
compare1.C
blob
e00592262c63d3b8b7a36a424e4a36e223818001
1
/* -Wall is supposed to trigger -Wsign-compare for C++. PR 10604.
2
See also gcc.dg/compare7.c. */
3
4
/* { dg-do compile } */
5
/* { dg-options "-Wall" } */
6
7
int f(unsigned a, int b)
8
{
9
return a < b; /* { dg-warning "signed and unsigned" } */
10
}