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 r14-10041] internal-fn: Fix up expand_arith_overflow [PR114753]
Date: Fri, 19 Apr 2024 16:16:28 +0000 (GMT)	[thread overview]
Message-ID: <20240419161628.D46E03849ACB@sourceware.org> (raw)

https://gcc.gnu.org/g:33bf8e5385099c2963f278bff38e4f917eddf1d8

commit r14-10041-g33bf8e5385099c2963f278bff38e4f917eddf1d8
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Fri Apr 19 18:15:39 2024 +0200

    internal-fn: Fix up expand_arith_overflow [PR114753]
    
    During backporting I've noticed I've missed one return spot for the
    restoration of the original flag_trapv flag value.
    
    2024-04-19  Jakub Jelinek  <jakub@redhat.com>
    
            PR middle-end/114753
            * internal-fn.cc (expand_arith_overflow): Add one missing restore
            of flag_trapv before return.

Diff:
---
 gcc/internal-fn.cc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gcc/internal-fn.cc b/gcc/internal-fn.cc
index c7c5222a169..2c764441cde 100644
--- a/gcc/internal-fn.cc
+++ b/gcc/internal-fn.cc
@@ -2793,6 +2793,7 @@ expand_arith_overflow (enum tree_code code, gimple *stmt)
 	    case PLUS_EXPR:
 	      expand_addsub_overflow (loc, code, lhs, arg0, arg1, unsr_p,
 				      unsr_p, unsr_p, false, NULL);
+	      flag_trapv = save_flag_trapv;
 	      return;
 	    case MULT_EXPR:
 	      expand_mul_overflow (loc, lhs, arg0, arg1, unsr_p,

                 reply	other threads:[~2024-04-19 16:16 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=20240419161628.D46E03849ACB@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).