Commit 8dd7cb06218b7962258f25114ac627c05b71d951

Authored by bellard
1 parent d3032929

moved to disas.c


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@223 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 0 additions and 13 deletions
alpha-dis.c
@@ -248,19 +248,6 @@ enum bfd_reloc_code_real { @@ -248,19 +248,6 @@ enum bfd_reloc_code_real {
248 BFD_RELOC_ALPHA_HINT 248 BFD_RELOC_ALPHA_HINT
249 }; 249 };
250 250
251 -bfd_vma  
252 -bfd_getl32 (addr)  
253 - register const bfd_byte *addr;  
254 -{  
255 - unsigned long v;  
256 -  
257 - v = (unsigned long) addr[0];  
258 - v |= (unsigned long) addr[1] << 8;  
259 - v |= (unsigned long) addr[2] << 16;  
260 - v |= (unsigned long) addr[3] << 24;  
261 - return (bfd_vma) v;  
262 -}  
263 -  
264 /* This file holds the Alpha AXP opcode table. The opcode table includes 251 /* This file holds the Alpha AXP opcode table. The opcode table includes
265 almost all of the extended instruction mnemonics. This permits the 252 almost all of the extended instruction mnemonics. This permits the
266 disassembler to use them, and simplifies the assembler logic, at the 253 disassembler to use them, and simplifies the assembler logic, at the