2002-11-15 Klee Dienes <kdienes@apple.com>

* pef.c (bfd_pef_convert_architecture): Move declaration
        ARCH_POWERPC and ARCH_M68K to the start of the function.
This commit is contained in:
Klee Dienes 2002-11-15 08:38:38 +00:00
parent 2fa1f77a28
commit eddc4f813f
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2002-11-15 Klee Dienes <kdienes@apple.com>
* pef.c (bfd_pef_convert_architecture): Move declaration of
ARCH_POWERPC and ARCH_M68K to the start of the function.
2002-11-14 Svein E. Seldal <Svein.Seldal@solidas.com>
* coff-tic4x.c (tic4x_howto_table): Formatting fixup

View File

@ -142,12 +142,12 @@ bfd_pef_convert_architecture (architecture, type, subtype)
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;
else if (architecture == ARCH_M68K)