1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2024-12-14 11:32:34 +00:00
llvm-6502/test/FrontendC/2003-08-20-PrototypeMismatch.c
Dan Gohman fea1dd0804 Remove obsolete -f flags.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79992 91177308-0d34-0410-b5e6-96231b3b80d8
2009-08-25 15:38:29 +00:00

16 lines
145 B
C

// 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);
}