repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PPC::B and PPC::BCC's target operand may be an immediate.
[llvm/msp430.git]
/
test
/
FrontendC
/
2003-08-20-PrototypeMismatch.c
blob
8358a2f6fd05042629251daae04db38b3dad2973
1
// RUN: %llvmgcc -S %s -o - | llvm-as -f -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
() {
14
foo
(
7
);
15
}