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
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2002-07-30-VarArgsCallFailure.c
blob
7a01304c59c0eb0b25509388e43c8353651608a6
1
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
int
tcount
;
4
void
test
(
char
*,
const char
*,
int
);
5
void
foo
(
void
) {
6
char
Buf
[
10
];
7
test
(
Buf
,
"n%%%d"
,
tcount
++);
8
}