diff options
author | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-19 02:45:15 +0000 |
---|---|---|
committer | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-19 02:45:15 +0000 |
commit | 31ac829714a0fde131a89fb95078c250447fc931 (patch) | |
tree | e45fd8bf61fc52aa9dc983b92684a70ff6ef2186 | |
parent | 81b45753a41d5216548c2012c86e9322a29b0710 (diff) | |
download | gcc-31ac829714a0fde131a89fb95078c250447fc931.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90893 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/dwarf2asm.c | 6 | ||||
-rw-r--r-- | gcc/dwarf2asm.h | 18 |
3 files changed, 24 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 75edb24d43e..7a8f4cdfbda 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/dwarf2asm.c b/gcc/dwarf2asm.c index 6d2c3cb87e6..c963fbcdd1c 100644 --- a/gcc/dwarf2asm.c +++ b/gcc/dwarf2asm.c @@ -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 */ static rtx dw2_force_const_mem (rtx); static int dw2_output_indirect_constant_1 (splay_tree_node, void *); diff --git a/gcc/dwarf2asm.h b/gcc/dwarf2asm.h index 1cc599e7399..f9ff053c5f2 100644 --- a/gcc/dwarf2asm.h +++ b/gcc/dwarf2asm.h @@ -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 |