From eac902c18cddf083faa4ed5020bcedab6d4f190a Mon Sep 17 00:00:00 2001 From: Segher Boessenkool Date: Wed, 24 Oct 2018 22:34:40 +0000 Subject: combine: Don't do make_more_copies for dest PC (PR87720) Jumps are written in RTL as moves to PC. But the latter has no mode, so we shouldn't try to use it. Since the optimization this routine does does not really help for jumps at all, let's just skip it. PR rtl-optimization/87720 * combine.c (make_more_copies): Skip if the dest is pc_rtx. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@265474 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 5 +++++ gcc/combine.c | 2 ++ 2 files changed, 7 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fdfca8ba6bc..da93f6f8867 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2018-10-24 Segher Boessenkool + + PR rtl-optimization/87720 + * combine.c (make_more_copies): Skip if the dest is pc_rtx. + 2018-10-24 Alexandre Oliva * gimple-ssa-isolate-paths.c diff --git a/gcc/combine.c b/gcc/combine.c index 8ec6809c05c..2b933289392 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -14958,6 +14958,8 @@ make_more_copies (void) continue; rtx src = SET_SRC (set); rtx dest = SET_DEST (set); + if (dest == pc_rtx) + continue; if (GET_CODE (src) == SUBREG) src = SUBREG_REG (src); if (!(REG_P (src) && HARD_REGISTER_P (src))) -- cgit v1.2.3