projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
358fc38
)
This testcase is independant of varargsness
author
Chris Lattner
<sabre@nondot.org>
Tue, 30 Jul 2002 22:24:07 +0000
(22:24 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Tue, 30 Jul 2002 22:24:07 +0000
(22:24 +0000)
Simplify.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3174
91177308
-0d34-0410-b5e6-
96231b3b80d8
test/CFrontend/2002-07-30-VarArgsCallFailure.c
patch
|
blob
|
history
diff --git
a/test/CFrontend/2002-07-30-VarArgsCallFailure.c
b/test/CFrontend/2002-07-30-VarArgsCallFailure.c
index dfe9d63c1b24483584d32b207ee93cfb1e4d7722..cdce478adc74d22368f54f76bdc98e3ae2207181 100644
(file)
--- a/
test/CFrontend/2002-07-30-VarArgsCallFailure.c
+++ b/
test/CFrontend/2002-07-30-VarArgsCallFailure.c
@@
-1,6
+1,6
@@
-#include <stdio.h>
int tcount;
+void test(char *, const char*, int);
void foo() {
char Buf[10];
-
sprintf
(Buf, "n%%%d", tcount++);
+
test
(Buf, "n%%%d", tcount++);
}