aboutsummaryrefslogtreecommitdiff
path: root/gdb/language.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2000-03-04 04:56:46 +0000
committerAndrew Cagney <cagney@redhat.com>2000-03-04 04:56:46 +0000
commit7acb79c8836539cd0ce849e99cb0ae817f972422 (patch)
tree961b8f5c68b2eb9b6eafe809d3f6c185d2a07e62 /gdb/language.c
parent76c520e05ca8cbacbd781c0d500e939e37cf100a (diff)
downloadfsf-binutils-gdb-7acb79c8836539cd0ce849e99cb0ae817f972422.zip
fsf-binutils-gdb-7acb79c8836539cd0ce849e99cb0ae817f972422.tar.gz
fsf-binutils-gdb-7acb79c8836539cd0ce849e99cb0ae817f972422.tar.bz2
Comment out longest_raw_hex_string.
Diffstat (limited to 'gdb/language.c')
-rw-r--r--gdb/language.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/language.c b/gdb/language.c
index ebdcefe..a32796d 100644
--- a/gdb/language.c
+++ b/gdb/language.c
@@ -545,6 +545,11 @@ local_hex_format_custom (pre)
return form;
}
+#if 0
+/* FIXME: cagney/2000-03-04: This function does not appear to be used.
+ It can be deleted once 5.0 has been released. */
+/* FIXME: cagney/2000-03-04: This code assumes that the compiler
+ supports ``long long''. */
/* Converts a number to hexadecimal (without leading "0x") and stores it in a
static string. Returns a pointer to this string. */
@@ -562,6 +567,7 @@ longest_raw_hex_string (num)
sprintf (res_longest_raw_hex_string, "%llx", ll);
return res_longest_raw_hex_string;
}
+#endif
/* Converts a number to hexadecimal and stores it in a static
string. Returns a pointer to this string. */