diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-20 19:42:14 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-20 19:42:14 +0000 |
commit | f9480ffc140bbdde991fd33c534cc146501a1db0 (patch) | |
tree | 767ec857c56a4a3d9ddb635506781297146c889a /mips-dis.c | |
parent | dfb5e54b1148fc2ed2185dbc2ea9feb9490ee078 (diff) | |
download | hqemu-f9480ffc140bbdde991fd33c534cc146501a1db0.zip hqemu-f9480ffc140bbdde991fd33c534cc146501a1db0.tar.gz |
Fix remaining compiler warnings for mips targets.
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6111 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'mips-dis.c')
-rw-r--r-- | mips-dis.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3272,7 +3272,7 @@ choose_arch_by_number (unsigned long mach) return c; } -void +static void set_default_mips_dis_options (struct disassemble_info *info) { const struct mips_arch_choice *chosen_arch; @@ -3321,7 +3321,7 @@ set_default_mips_dis_options (struct disassemble_info *info) #endif } -void +static void parse_mips_dis_option (const char *option, unsigned int len) { unsigned int i, optionlen, vallen; @@ -4809,7 +4809,6 @@ print_mips16_insn_arg (char type, abort (); } } -#endif void print_mips_disassembler_options (FILE *stream) @@ -4863,3 +4862,4 @@ with the -M switch (multiple options should be separated by commas):\n")); fprintf (stream, _("\n")); } +#endif |