Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
be1aa410274b28fc143c47c814f07c989f4534d6
/
.
/
test
/
Frontend
/
warning-mapping-4.c
blob: d8d2769fc5353092fc5f6eef9a891e595d989da8 [
file
] [
log
] [
blame
]
Daniel Dunbar
be1aa41
2011-09-29 01:58:05 +0000
[
diff
] [
blame^
]
1
// RUN: %clang_cc1 -verify -Wno-error=sign-compare %s
2
// RUN: %clang_cc1 -verify -Wsign-compare -w -Wno-error=sign-compare %s
3
4
int
f0
(
int
x
,
unsigned
y
)
{
5
return
x
<
y
;
6
}