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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
Sema
/
memset-invalid.c
blob
3532af835b23c826c08b75e241caf506b0b07244
1
// RUN: %clang_cc1 -fsyntax-only %s -verify
2
3
char
memset
(
void
);
// expected-warning {{incompatible redeclaration of library function 'memset'}} expected-note{{'memset' is a builtin with type}}
4
char
test
(
void
) {
5
return
memset
();
6
}