Commit 04e897efdde24155237f228ea341ddaf2bce9dc7
1 parent
388c4508
Remove duplicate TARGET_M68K case.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2280 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
0 additions
and
4 deletions
disas.c
| ... | ... | @@ -194,8 +194,6 @@ void target_disas(FILE *out, target_ulong code, target_ulong size, int flags) |
| 194 | 194 | #else |
| 195 | 195 | print_insn = print_insn_little_mips; |
| 196 | 196 | #endif |
| 197 | -#elif defined(TARGET_M68K) | |
| 198 | - print_insn = print_insn_m68k; | |
| 199 | 197 | #elif defined(TARGET_SH4) |
| 200 | 198 | disasm_info.mach = bfd_mach_sh4; |
| 201 | 199 | print_insn = print_insn_sh; |
| ... | ... | @@ -395,8 +393,6 @@ void monitor_disas(CPUState *env, |
| 395 | 393 | #else |
| 396 | 394 | print_insn = print_insn_little_mips; |
| 397 | 395 | #endif |
| 398 | -#elif defined(TARGET_M68K) | |
| 399 | - print_insn = print_insn_m68k; | |
| 400 | 396 | #else |
| 401 | 397 | term_printf("0x" TARGET_FMT_lx |
| 402 | 398 | ": Asm output not supported on this arch\n", pc); | ... | ... |