summaryrefslogtreecommitdiff
path: root/test/FrontendC/2003-08-20-PrototypeMismatch.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC/2003-08-20-PrototypeMismatch.c')
-rw-r--r--test/FrontendC/2003-08-20-PrototypeMismatch.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/FrontendC/2003-08-20-PrototypeMismatch.c b/test/FrontendC/2003-08-20-PrototypeMismatch.c
deleted file mode 100644
index 85c89f694c..0000000000
--- a/test/FrontendC/2003-08-20-PrototypeMismatch.c
+++ /dev/null
@@ -1,15 +0,0 @@
-// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
-
-
-
-static int foo(int);
-
-static int foo(C)
-char C;
-{
- return C;
-}
-
-void test() {
- foo(7);
-}