From: Kaveh R. Ghazi Date: Thu, 12 Apr 2001 22:27:22 +0000 (+0000) Subject: bitmap.h (debug_bitmap): Delete redundant prototype. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=44c4c11d5dec99ba5d3f59628fbc3dce23596634;p=gcc.git bitmap.h (debug_bitmap): Delete redundant prototype. * bitmap.h (debug_bitmap): Delete redundant prototype. * rtl.h (get_frame_size): Likewise. From-SVN: r41313 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 30c42db8e1a..dbecf32eac7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2001-04-12 Kaveh R. Ghazi + + * bitmap.h (debug_bitmap): Delete redundant prototype. + + * rtl.h (get_frame_size): Likewise. + 2001-04-12 Jim Wilson * config/ia64/ia64.md (extendsfdf2, extendsftf2, extenddftf2): Simplify diff --git a/gcc/bitmap.h b/gcc/bitmap.h index fc10bd4cfe8..d96e793a349 100644 --- a/gcc/bitmap.h +++ b/gcc/bitmap.h @@ -104,8 +104,6 @@ extern bitmap bitmap_initialize PARAMS ((bitmap)); /* Release all memory held by bitmaps. */ extern void bitmap_release_memory PARAMS ((void)); -extern void debug_bitmap PARAMS ((bitmap)); - /* Allocate a bitmap with oballoc. */ #define BITMAP_OBSTACK_ALLOC(OBSTACK) \ bitmap_initialize ((bitmap) obstack_alloc (OBSTACK, sizeof (bitmap_head))) diff --git a/gcc/rtl.h b/gcc/rtl.h index c1af43d38a8..5465030307c 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -1808,7 +1808,6 @@ extern void reposition_prologue_and_epilogue_notes PARAMS ((rtx)); extern void thread_prologue_and_epilogue_insns PARAMS ((rtx)); extern int prologue_epilogue_contains PARAMS ((rtx)); extern int sibcall_epilogue_contains PARAMS ((rtx)); -extern HOST_WIDE_INT get_frame_size PARAMS ((void)); extern void preserve_rtl_expr_result PARAMS ((rtx)); extern void mark_temp_addr_taken PARAMS ((rtx)); extern void update_temp_slot_address PARAMS ((rtx, rtx));