Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
gcc.dg
/
compare7.c
blob: b6fe6e78334e7e387d7d206687aee1ac0dc099de [
file
] [
log
] [
blame
]
/* -Wall is not supposed to trigger -Wsign-compare for C. PR 10604.
See also g++.dg/warn/compare1.C. */
/* { dg-do compile } */
/* { dg-options "-Wall" } */
int
f
(
unsigned
a
,
int
b
)
{
return
a
<
b
;
/* { dg-bogus "changes signedness" } */
}