emit-rtl.c (make_debug_insn_raw, [...]): Make static.

* emit-rtl.c (make_debug_insn_raw, make_jump_insn_raw): Make static.
	* rtl.h (make_debug_insn_raw, make_jump_insn_raw): Remove prototypes.

From-SVN: r189467
This commit is contained in:
Steven Bosscher 2012-07-13 15:56:04 +00:00
parent d1cb1990fb
commit e4da1e17ea
3 changed files with 7 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2012-07-13 Steven Bosscher <steven@gcc.gnu.org>
* emit-rtl.c (make_debug_insn_raw, make_jump_insn_raw): Make static.
* rtl.h (make_debug_insn_raw, make_jump_insn_raw): Remove prototypes.
2012-07-13 Richard Guenther <rguenther@suse.de>
PR tree-optimization/53907

View File

@ -149,7 +149,6 @@ static GTY ((if_marked ("ggc_marked_p"), param_is (struct rtx_def)))
#define cur_debug_insn_uid (crtl->emit.x_cur_debug_insn_uid)
#define first_label_num (crtl->emit.x_first_label_num)
static rtx make_call_insn_raw (rtx);
static rtx change_address_1 (rtx, enum machine_mode, rtx, int);
static void set_used_decls (tree);
static void mark_label_nuses (rtx);
@ -3692,7 +3691,7 @@ make_insn_raw (rtx pattern)
/* Like `make_insn_raw' but make a DEBUG_INSN instead of an insn. */
rtx
static rtx
make_debug_insn_raw (rtx pattern)
{
rtx insn;
@ -3713,7 +3712,7 @@ make_debug_insn_raw (rtx pattern)
/* Like `make_insn_raw' but make a JUMP_INSN instead of an insn. */
rtx
static rtx
make_jump_insn_raw (rtx pattern)
{
rtx insn;

View File

@ -1777,8 +1777,6 @@ extern rtx emit_clobber (rtx);
extern rtx gen_use (rtx);
extern rtx emit_use (rtx);
extern rtx make_insn_raw (rtx);
extern rtx make_debug_insn_raw (rtx);
extern rtx make_jump_insn_raw (rtx);
extern void add_function_usage_to (rtx, rtx);
extern rtx last_call_insn (void);
extern rtx previous_insn (rtx);