public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
From: Jakub Jelinek <jakub@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org
Subject: [gcc r10-7685] cselib: Mark the cselib_record_sp_cfa_base_equiv VALUE as preserved [PR94551]
Date: Sat, 11 Apr 2020 05:34:56 +0000 (GMT)	[thread overview]
Message-ID: <20200411053456.75AD7385B835@sourceware.org> (raw)

https://gcc.gnu.org/g:a615ea71bc8fbf31b9bc71cb373a7ca5b9cca44a

commit r10-7685-ga615ea71bc8fbf31b9bc71cb373a7ca5b9cca44a
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Sat Apr 11 07:32:12 2020 +0200

    cselib: Mark the cselib_record_sp_cfa_base_equiv VALUE as preserved [PR94551]
    
    Sometimes the cselib_record_sp_cfa_base_equiv makes it into the var-tracking
    used VALUEs and needs to be preserved.
    
    2020-04-11  Jakub Jelinek  <jakub@redhat.com>
    
            PR debug/94495
            PR target/94551
            * cselib.c (cselib_record_sp_cfa_base_equiv): Set PRESERVED_VALUE_P on
            val->val_rtx.

Diff:
---
 gcc/ChangeLog | 7 +++++++
 gcc/cselib.c  | 5 ++++-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 33e980bd977..f1a9568d9c4 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,10 @@
+2020-04-11  Jakub Jelinek  <jakub@redhat.com>
+
+	PR debug/94495
+	PR target/94551
+	* cselib.c (cselib_record_sp_cfa_base_equiv): Set PRESERVED_VALUE_P on
+	val->val_rtx.
+
 2020-04-10  Thomas Schwinge  <thomas@codesourcery.com>
 
 	PR middle-end/89433
diff --git a/gcc/cselib.c b/gcc/cselib.c
index 3692feb13a2..53e9603868d 100644
--- a/gcc/cselib.c
+++ b/gcc/cselib.c
@@ -2695,7 +2695,10 @@ cselib_record_sp_cfa_base_equiv (HOST_WIDE_INT offset, rtx_insn *insn)
     = cselib_lookup_from_insn (plus_constant (Pmode, sp_derived_value, offset),
 			       Pmode, 1, VOIDmode, insn);
   if (val != NULL)
-    cselib_record_set (stack_pointer_rtx, val, NULL);
+    {
+      PRESERVED_VALUE_P (val->val_rtx) = 1;
+      cselib_record_set (stack_pointer_rtx, val, NULL);
+    }
 }
 
 /* Return true if V is SP_DERIVED_VALUE_P (or SP_DERIVED_VALUE_P + CONST_INT)


                 reply	other threads:[~2020-04-11  5:34 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200411053456.75AD7385B835@sourceware.org \
    --to=jakub@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).