aboutsummaryrefslogtreecommitdiff
path: root/gcc/emit-rtl.c
diff options
context:
space:
mode:
authorSteven Bosscher <steven@gcc.gnu.org>2012-07-13 15:56:04 +0000
committerSteven Bosscher <steven@gcc.gnu.org>2012-07-13 15:56:04 +0000
commit57531df512d119def933ac46a02202a0fba4eebc (patch)
tree4cdc0393ac787aa8a47c42133aeb57b20b4d6a89 /gcc/emit-rtl.c
parente7461b927f2323754d5a8c7c1a65a4695a097047 (diff)
* 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. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@189467 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/emit-rtl.c')
-rw-r--r--gcc/emit-rtl.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c
index 9565c618b81..f4ced6f3ab0 100644
--- a/gcc/emit-rtl.c
+++ b/gcc/emit-rtl.c
@@ -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;