aboutsummaryrefslogtreecommitdiff
path: root/alpha-dis.c
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2003-06-09 15:31:02 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2003-06-09 15:31:02 +0000
commit8dd7cb06218b7962258f25114ac627c05b71d951 (patch)
tree3a79cfc72c9aa5c0cfa36ae76de25e0cce9a3b9e /alpha-dis.c
parentd30329297bf76338326edd8ee39342d0fd37d0df (diff)
moved to disas.c
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@223 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'alpha-dis.c')
-rw-r--r--alpha-dis.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/alpha-dis.c b/alpha-dis.c
index ebda048e7e..e7a4fb4029 100644
--- a/alpha-dis.c
+++ b/alpha-dis.c
@@ -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