summaryrefslogtreecommitdiff
path: root/opcodes/h8300-dis.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2003-11-19 19:44:58 +0000
committerKazu Hirata <kazu@codesourcery.com>2003-11-19 19:44:58 +0000
commit585877c8852235e5f90c0b4b2922d79a8abb8b82 (patch)
tree703a42b9876b2cd45571106ceb427d05c757a8c5 /opcodes/h8300-dis.c
parent3c67ea38e6c2601186250c9ae93570ff62172182 (diff)
downloadgdb-585877c8852235e5f90c0b4b2922d79a8abb8b82.tar.gz
* h8300-dis.c (print_colon_thingie): Remove.
Diffstat (limited to 'opcodes/h8300-dis.c')
-rw-r--r--opcodes/h8300-dis.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/opcodes/h8300-dis.c b/opcodes/h8300-dis.c
index ea8d30b457c..895a9efbdc1 100644
--- a/opcodes/h8300-dis.c
+++ b/opcodes/h8300-dis.c
@@ -45,25 +45,6 @@ static void extract_immediate PARAMS ((FILE *,
int *, int *,
const struct h8_opcode *));
-static void print_colon_thingie PARAMS ((op_type *));
-
-static void
-print_colon_thingie (op_type *nib)
-{
- switch (*nib & SIZE) {
- case L_2: fprintf (stdout, "2"); break;
- case L_3:
- case L_3NZ: fprintf (stdout, "3"); break;
- case L_4: fprintf (stdout, "4"); break;
- case L_5: fprintf (stdout, "5"); break;
- case L_8: fprintf (stdout, "8"); break;
- case L_16:
- case L_16U: fprintf (stdout, "16"); break;
- case L_24: fprintf (stdout, "24"); break;
- case L_32: fprintf (stdout, "32"); break;
- }
-}
-
/* Run through the opcodes and sort them into order to make them easy
to disassemble. */