2002-11-15 Klee Dienes * pef.c (bfd_pef_convert_architecture): Move declaration of ARCH_POWERPC and ARCH_M68K to the start of the function. Index: pef.c =================================================================== RCS file: /cvs/src/src/bfd/pef.c,v retrieving revision 1.2 diff -u -r1.2 pef.c --- pef.c 12 Nov 2002 15:44:24 -0000 1.2 +++ pef.c 15 Nov 2002 08:34:06 -0000 @@ -142,11 +142,11 @@ enum bfd_architecture *type; unsigned long *subtype; { - *subtype = bfd_arch_unknown; - *type = bfd_arch_unknown; - const unsigned long ARCH_POWERPC = 0x70777063; /* 'pwpc' */ const unsigned long ARCH_M68K = 0x6d36386b; /* 'm68k' */ + + *subtype = bfd_arch_unknown; + *type = bfd_arch_unknown; if (architecture == ARCH_POWERPC) *type = bfd_arch_powerpc;