summaryrefslogtreecommitdiff
path: root/gcc/ira.h
diff options
context:
space:
mode:
authorvmakarov <vmakarov@138bc75d-0d04-0410-961f-82ee72b054a4>2013-12-13 20:47:19 +0000
committervmakarov <vmakarov@138bc75d-0d04-0410-961f-82ee72b054a4>2013-12-13 20:47:19 +0000
commit61cd3e5752228e5ccc59f971abe7aea068d894fd (patch)
treec4ae803ddb3a378c23de07993d4ac2fadf41169e /gcc/ira.h
parent502c7fa908d068e83bbfda423822b5690687e81d (diff)
downloadgcc-61cd3e5752228e5ccc59f971abe7aea068d894fd.tar.gz
2013-12-13 Vladimir Makarov <vmakarov@redhat.com>
* ira.h (struct ira_reg_equiv): Rename to ira_reg_equiv_s. * ira.c: Ditto. * lra-int.h (lra_init_equiv): New prototype. * lra-constraints.c (lra_init_equiv, update_equiv): New functions. (loc_equivalence_callback): Use the 3rd arg. (lra_constraints): Update equivalences. Pass curr_insn to simplify_replace_fn_rtx. * lra.c (lra): Call lra_init_equiv. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@205974 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ira.h')
-rw-r--r--gcc/ira.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ira.h b/gcc/ira.h
index 3a1824b3369..49acc4a4557 100644
--- a/gcc/ira.h
+++ b/gcc/ira.h
@@ -154,7 +154,7 @@ extern struct target_ira *this_target_ira;
(this_target_ira->x_ira_no_alloc_regs)
/* Major structure describing equivalence info for a pseudo. */
-struct ira_reg_equiv
+struct ira_reg_equiv_s
{
/* True if we can use this equivalence. */
bool defined_p;
@@ -173,7 +173,7 @@ struct ira_reg_equiv
extern int ira_reg_equiv_len;
/* Info about equiv. info for each register. */
-extern struct ira_reg_equiv *ira_reg_equiv;
+extern struct ira_reg_equiv_s *ira_reg_equiv;
extern void ira_init_once (void);
extern void ira_init (void);