This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] checking version of rtl flag access macros


This patch causes a bootstrap failure under hppa-linux.  There seems to
be a problem with some macro definitions in the patch.  For example,

> -/* 1 if insn is a branch that should not unconditionally execute its
> -   delay slots, i.e., it is an annulled branch.  */
> -#define INSN_ANNULLED_BRANCH_P(INSN) ((INSN)->unchanging)
> +/* 1 in an INSN in the delay slot of a branch insn if an annulling branch
> +   should be used.  */
> +#define INSN_ANNULLED_BRANCH_P(RTX) (RTL_FLAG_CHECK1((RTX), INSN)->unchanging)

What's "INSN"?

Dave
-- 
J. David Anglin                                  dave.anglin@nrc.ca
National Research Council of Canada              (613) 990-0752 (FAX: 952-6605)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]