repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Really use attribute.
[llvm-complete.git]
/
test
/
CFrontend
/
2002-10-12-TooManyArguments.c
blob
206cdd98da0bf04abb085d7a804fd8e0cf02acac
1
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
3
4
void
foo
() {}
5
6
void
bar
() {
7
foo
(
1
,
2
,
3
);
/* Too many arguments passed */
8
}