Comment out longest_raw_hex_string.
authorAndrew Cagney <cagney@redhat.com>
Sat, 4 Mar 2000 04:56:46 +0000 (04:56 +0000)
committerAndrew Cagney <cagney@redhat.com>
Sat, 4 Mar 2000 04:56:46 +0000 (04:56 +0000)
gdb/ChangeLog
gdb/language.c
gdb/language.h

index 0e1304016916f4b8b24bc1f50738ee9cd1aa9ee1..6c580be042376109e8c65a34f4c83c67c0f59d52 100644 (file)
@@ -1,3 +1,8 @@
+Sat Mar  4 15:45:38 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * language.c (longest_raw_hex_string): Comment out.  Appears
+       unused.
+
 Sat Mar  4 13:02:09 2000  Andrew Cagney  <cagney@b1.cygnus.com>
 
        * utils.c (mcalloc), defs.h (mcalloc): Keep consistent with
index ebdcefe5628581eb23a68ff8b734d3babda5aa43..a32796db8a57c07e20a2e59bcb1aa34fb8fbd322 100644 (file)
@@ -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. */
index 2f27cb120e3a5f9f7da103d7c6db4ffe9b5691e3..69ac2082ec13e8453ddd2ac0ac821fe6da74da7c 100644 (file)
@@ -362,11 +362,15 @@ extern char *
 extern char *
   local_hex_format_custom PARAMS ((char *));   /* language.c */
 
+#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. */
 /* Return a string that contains the hex digits of the number.  No preceeding
    "0x" */
 
 extern char *
   longest_raw_hex_string PARAMS ((LONGEST));
+#endif
 
 /* Return a string that contains a number formatted in one of the local
    (language-specific) formats.  Result is static and is overwritten by
This page took 0.026871 seconds and 4 git commands to generate.