Commit 3e9db8fa authored by jakub's avatar jakub
Browse files

PR bootstrap/52058

	* combine.c (do_SUBST_LINK, SUBST_LINK): Guard with #ifndef HAVE_cc0.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@183763 138bc75d-0d04-0410-961f-82ee72b054a4
parent a6dcd7c0
2012-01-31 Jakub Jelinek <jakub@redhat.com>
PR bootstrap/52058
* combine.c (do_SUBST_LINK, SUBST_LINK): Guard with #ifndef HAVE_cc0.
2012-01-31 Andreas Krebbel <Andreas.Krebbel@de.ibm.com> 2012-01-31 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
* config/s390/s390.md ("*ashr<mode>3_and"): Add missing z196 flag * config/s390/s390.md ("*ashr<mode>3_and"): Add missing z196 flag
......
...@@ -790,6 +790,7 @@ do_SUBST_MODE (rtx *into, enum machine_mode newval) ...@@ -790,6 +790,7 @@ do_SUBST_MODE (rtx *into, enum machine_mode newval)
#define SUBST_MODE(INTO, NEWVAL) do_SUBST_MODE(&(INTO), (NEWVAL)) #define SUBST_MODE(INTO, NEWVAL) do_SUBST_MODE(&(INTO), (NEWVAL))
#ifndef HAVE_cc0
/* Similar to SUBST, but NEWVAL is a LOG_LINKS expression. */ /* Similar to SUBST, but NEWVAL is a LOG_LINKS expression. */
static void static void
...@@ -815,7 +816,7 @@ do_SUBST_LINK (struct insn_link **into, struct insn_link *newval) ...@@ -815,7 +816,7 @@ do_SUBST_LINK (struct insn_link **into, struct insn_link *newval)
} }
#define SUBST_LINK(oldval, newval) do_SUBST_LINK (&oldval, newval) #define SUBST_LINK(oldval, newval) do_SUBST_LINK (&oldval, newval)
#endif
/* Subroutine of try_combine. Determine whether the replacement patterns /* Subroutine of try_combine. Determine whether the replacement patterns
NEWPAT, NEWI2PAT and NEWOTHERPAT are cheaper according to insn_rtx_cost NEWPAT, NEWI2PAT and NEWOTHERPAT are cheaper according to insn_rtx_cost
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment