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
Improve compatibility with older versions of Windows.
[llvm/msp430.git]
/
test
/
FrontendC
/
2002-07-30-VarArgsCallFailure.c
blob
b37a462220b28e05e263eb1f9d42915db0b8e137
1
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
3
int
tcount
;
4
void
test
(
char
*,
const char
*,
int
);
5
void
foo
() {
6
char
Buf
[
10
];
7
test
(
Buf
,
"n%%%d"
,
tcount
++);
8
}