aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Monakov <amonakov@ispras.ru>2022-07-19 18:01:37 +0300
committerAlexander Monakov <amonakov@ispras.ru>2022-07-20 16:10:29 +0300
commit8694390e2b6ae3af3212f1c829e62fb086cf7707 (patch)
tree4387c12d54cdf8059a46678d7e5c3f4a5348fbea
parent5f59d0f2d9fa921c04d75c39592e603cfa2b1324 (diff)
downloadgcc-8694390e2b6ae3af3212f1c829e62fb086cf7707.zip
gcc-8694390e2b6ae3af3212f1c829e62fb086cf7707.tar.gz
gcc-8694390e2b6ae3af3212f1c829e62fb086cf7707.tar.bz2
Remove unused remove_node_from_expr_list
This function remains unused since remove_node_from_insn_list was cloned from it. gcc/ChangeLog: * rtl.h (remove_node_from_expr_list): Remove declaration. * rtlanal.cc (remove_node_from_expr_list): Remove (no uses).
-rw-r--r--gcc/rtl.h1
-rw-r--r--gcc/rtlanal.cc29
2 files changed, 0 insertions, 30 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h
index 488016b..645c009 100644
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -3712,7 +3712,6 @@ extern unsigned hash_rtx_cb (const_rtx, machine_mode, int *, int *,
extern rtx regno_use_in (unsigned int, rtx);
extern int auto_inc_p (const_rtx);
extern bool in_insn_list_p (const rtx_insn_list *, const rtx_insn *);
-extern void remove_node_from_expr_list (const_rtx, rtx_expr_list **);
extern void remove_node_from_insn_list (const rtx_insn *, rtx_insn_list **);
extern int loc_mentioned_in_p (rtx *, const_rtx);
extern rtx_insn *find_first_parameter_load (rtx_insn *, rtx_insn *);
diff --git a/gcc/rtlanal.cc b/gcc/rtlanal.cc
index d78cc60..ec95ecd 100644
--- a/gcc/rtlanal.cc
+++ b/gcc/rtlanal.cc
@@ -2878,35 +2878,6 @@ in_insn_list_p (const rtx_insn_list *listp, const rtx_insn *node)
return false;
}
-/* Search LISTP (an EXPR_LIST) for an entry whose first operand is NODE and
- remove that entry from the list if it is found.
-
- A simple equality test is used to determine if NODE matches. */
-
-void
-remove_node_from_expr_list (const_rtx node, rtx_expr_list **listp)
-{
- rtx_expr_list *temp = *listp;
- rtx_expr_list *prev = NULL;
-
- while (temp)
- {
- if (node == temp->element ())
- {
- /* Splice the node out of the list. */
- if (prev)
- XEXP (prev, 1) = temp->next ();
- else
- *listp = temp->next ();
-
- return;
- }
-
- prev = temp;
- temp = temp->next ();
- }
-}
-
/* Search LISTP (an INSN_LIST) for an entry whose first operand is NODE and
remove that entry from the list if it is found.