dwarf2asm.h (dw2_asm_output_pcel): Stub out with #if 0.
authorBen Elliston <bje@au.ibm.com>
Fri, 19 Nov 2004 02:45:15 +0000 (02:45 +0000)
committerBen Elliston <bje@gcc.gnu.org>
Fri, 19 Nov 2004 02:45:15 +0000 (13:45 +1100)
* dwarf2asm.h (dw2_asm_output_pcel): Stub out with #if 0.
(dw2_asm_output_delta_sleb128): Likewise.
* dwarf2asm.c (dw2_asm_output_pcrel): Likewise.
(dw2_asm_output_delta_sleb128): Likewise.

From-SVN: r90893

gcc/ChangeLog
gcc/dwarf2asm.c
gcc/dwarf2asm.h

index 75edb24d43e84ed6c9b2128f43b8681102bfab3d..7a8f4cdfbda0debeddbfea62a43cdee84fd4b92e 100644 (file)
@@ -1,3 +1,10 @@
+2004-11-19  Ben Elliston  <bje@au.ibm.com>
+
+       * dwarf2asm.h (dw2_asm_output_pcel): Stub out with #if 0.
+       (dw2_asm_output_delta_sleb128): Likewise.
+       * dwarf2asm.c (dw2_asm_output_pcrel): Likewise.
+       (dw2_asm_output_delta_sleb128): Likewise.
+
 2004-11-19  Adam Nemet  <anemet@lnxw.com>
 
        * tree-ssa-alias.c: Fix comment.
index 6d2c3cb87e6cbcac0a17835156058c1e97313008..c963fbcdd1c379199389c2c64b50e3c6a8d4fdf1 100644 (file)
@@ -149,6 +149,8 @@ dw2_asm_output_offset (int size, const char *label,
   va_end (ap);
 }
 
+#if 0
+
 /* Output a self-relative reference to a label, possibly in a
    different section or object file.  */
 
@@ -179,6 +181,7 @@ dw2_asm_output_pcrel (int size ATTRIBUTE_UNUSED,
 
   va_end (ap);
 }
+#endif /* 0 */
 
 /* Output an absolute reference to a label.  */
 
@@ -649,6 +652,8 @@ dw2_asm_output_delta_uleb128 (const char *lab1 ATTRIBUTE_UNUSED,
   va_end (ap);
 }
 
+#if 0
+
 void
 dw2_asm_output_delta_sleb128 (const char *lab1 ATTRIBUTE_UNUSED,
                              const char *lab2 ATTRIBUTE_UNUSED,
@@ -676,6 +681,7 @@ dw2_asm_output_delta_sleb128 (const char *lab1 ATTRIBUTE_UNUSED,
 
   va_end (ap);
 }
+#endif /* 0 */
 \f
 static rtx dw2_force_const_mem (rtx);
 static int dw2_output_indirect_constant_1 (splay_tree_node, void *);
index 1cc599e739934c50a6070331daed9b06620f9d46..f9ff053c5f25eac9a1630584b5e5a174604f2565 100644 (file)
@@ -32,9 +32,6 @@ extern void dw2_asm_output_delta (int, const char *, const char *,
 extern void dw2_asm_output_offset (int, const char *, const char *, ...)
      ATTRIBUTE_NULL_PRINTF_3;
 
-extern void dw2_asm_output_pcrel (int, const char *, const char *, ...)
-     ATTRIBUTE_NULL_PRINTF_3;
-
 extern void dw2_asm_output_addr (int, const char *, const char *, ...)
      ATTRIBUTE_NULL_PRINTF_3;
 
@@ -61,13 +58,20 @@ extern void dw2_asm_output_delta_uleb128 (const char *, const char *,
                                          const char *, ...)
      ATTRIBUTE_NULL_PRINTF_3;
 
-extern void dw2_asm_output_delta_sleb128 (const char *, const char *,
-                                         const char *, ...)
-     ATTRIBUTE_NULL_PRINTF_3;
-
 extern int size_of_uleb128 (unsigned HOST_WIDE_INT);
 extern int size_of_sleb128 (HOST_WIDE_INT);
 extern int size_of_encoded_value (int);
 extern const char *eh_data_format_name (int);
 
 extern void dw2_output_indirect_constants (void);
+
+/* These are currently unused.  */
+
+#if 0
+extern void dw2_asm_output_pcrel (int, const char *, const char *, ...)
+     ATTRIBUTE_NULL_PRINTF_3;
+
+extern void dw2_asm_output_delta_sleb128 (const char *, const char *,
+                                         const char *, ...)
+     ATTRIBUTE_NULL_PRINTF_3;
+#endif