Fix part 1 of pr4682. PICADD is a 16-bit instruction even in thumb2 mode.
[llvm/avr.git] / test / FrontendC / 2003-08-20-PrototypeMismatch.c
blob8358a2f6fd05042629251daae04db38b3dad2973
1 // RUN: %llvmgcc -S %s -o - | llvm-as -f -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);