pass machinemoduleinfo down into getSymbolForDwarfGlobalReference,
[llvm/avr.git] / test / FrontendC / 2003-08-20-PrototypeMismatch.c
blob85c89f694c57f6d342396efb2896000855ffe593
1 // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
5 static int foo(int);
7 static int foo(C)
8 char C;
10 return C;
13 void test() {
14 foo(7);