diff options
Diffstat (limited to 'test/FrontendC/2003-08-20-PrototypeMismatch.c')
-rw-r--r-- | test/FrontendC/2003-08-20-PrototypeMismatch.c | 15 |
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); -} |