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
/
CodeGen
/
2003-08-20-PrototypeMismatch.c
blob
88dd068d3c556c142d683c9f706ca45ad8db2d09
1
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
4
5
static int
foo
(
int
);
6
7
static int
foo
(
C
)
8
char
C
;
9
{
10
return
C
;
11
}
12
13
void
test
(
void
) {
14
foo
(
7
);
15
}