From 60ff05a9597f4db826dde04d9a784f5748119b11 Mon Sep 17 00:00:00 2001 From: tbsaunde Date: Sat, 2 May 2015 21:04:47 +0000 Subject: [PATCH] recog_data::insn can be a rtx_insn * gcc/ChangeLog: 2015-05-02 Trevor Saunders * genrecog.c (print_subroutine): Adjust. * recog.c (get_bool_attr_mask_uncached): Likewise. * recog.h (struct recog_data_d): Change the type of insn to rtx_insn *. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@222733 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 7 +++++++ gcc/genrecog.c | 2 +- gcc/recog.c | 2 +- gcc/recog.h | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 05c66a62da2..e7023015310 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,12 @@ 2015-05-02 Trevor Saunders + * genrecog.c (print_subroutine): Adjust. + * recog.c (get_bool_attr_mask_uncached): Likewise. + * recog.h (struct recog_data_d): Change the type of insn to + rtx_insn *. + +2015-05-02 Trevor Saunders + * dwarf2cfi.c (add_cfi_insn): Change type to rtx_insn *. 2015-05-02 Trevor Saunders diff --git a/gcc/genrecog.c b/gcc/genrecog.c index 29da09483fe..73e7995262a 100644 --- a/gcc/genrecog.c +++ b/gcc/genrecog.c @@ -5118,7 +5118,7 @@ print_subroutine (output_state *os, state *s, int proc_id) print_subroutine_start (os, s, &root_pos); if (proc_id == 0) { - printf (" recog_data.insn = NULL_RTX;\n"); + printf (" recog_data.insn = NULL;\n"); printf (" rtx_insn *insn ATTRIBUTE_UNUSED;\n"); printf (" insn = safe_as_a (uncast_insn);\n"); } diff --git a/gcc/recog.c b/gcc/recog.c index a5be34c21bd..53d89e0a1c8 100644 --- a/gcc/recog.c +++ b/gcc/recog.c @@ -2124,7 +2124,7 @@ get_bool_attr_mask_uncached (rtx_insn *insn, bool_attr attr) that the insn operands are already cached. As above, the attribute mustn't depend on the values of operands, so we don't provide their real values here. */ - rtx old_insn = recog_data.insn; + rtx_insn *old_insn = recog_data.insn; int old_alternative = which_alternative; recog_data.insn = insn; diff --git a/gcc/recog.h b/gcc/recog.h index 8a38b269c47..51f2165eef9 100644 --- a/gcc/recog.h +++ b/gcc/recog.h @@ -249,7 +249,7 @@ struct recog_data_d bool is_asm; /* In case we are caching, hold insn data was generated for. */ - rtx insn; + rtx_insn *insn; }; extern struct recog_data_d recog_data; -- 2.11.4.GIT