repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[RISCV] Add shrinkwrap test cases showing gaps in current impl
[llvm-project.git]
/
clang
/
test
/
Frontend
/
Weverything.c
blob
32f314720b248410e28093eb3ada4954a3d5a7c6
1
// Regression check that -pedantic-errors doesn't cause other diagnostics to
2
// become errors.
3
//
4
// RUN: %clang_cc1 -verify -Weverything -pedantic-errors %s
5
6
int
f0
(
int
,
unsigned
);
7
int
f0
(
int
x
,
unsigned
y
) {
8
return
x
<
y
;
// expected-warning {{comparison of integers}}
9
}