]> git.proxmox.com Git - qemu.git/blobdiff - alpha-dis.c
moved to disas.c
[qemu.git] / alpha-dis.c
index ebda048e7e38a4ea05305ec0e25f4ec6c45c8177..e7a4fb4029e81a7c7864ee7fbe929b746fee511a 100644 (file)
@@ -248,19 +248,6 @@ enum bfd_reloc_code_real {
     BFD_RELOC_ALPHA_HINT
 };
 
-bfd_vma
-bfd_getl32 (addr)
-     register const bfd_byte *addr;
-{
-  unsigned long v;
-
-  v = (unsigned long) addr[0];
-  v |= (unsigned long) addr[1] << 8;
-  v |= (unsigned long) addr[2] << 16;
-  v |= (unsigned long) addr[3] << 24;
-  return (bfd_vma) v;
-}
-
 /* This file holds the Alpha AXP opcode table.  The opcode table includes
    almost all of the extended instruction mnemonics.  This permits the
    disassembler to use them, and simplifies the assembler logic, at the