From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7879) id CA8F1385842A; Thu, 2 Mar 2023 12:13:25 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org CA8F1385842A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1677759205; bh=6nACoGJb6DjsOlI717MQYpKt+JNLYUkpK3POGBgdk+Y=; h=From:To:Subject:Date:From; b=dDZXHwSL2QIzOfOSmMg24a0fGwOwY0xzbv/b0yQTRLCo0jKtQbwna1TYOo+F+hW+F +hcKwu/bDTFzlPPPDTF5uKovbMFjcOkOj6X4nZYPr0Zk/WA5ehCtO9tbosNwKoW4rX /2GE5wOwsNo24gv20bcMRw+QfevrQ40pYfqFmVq8= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Filip Kastl To: gcc-cvs@gcc.gnu.org Subject: [gcc(refs/users/pheeck/heads/sccp)] cleanup_after_replace: old_stmt->bb change to stmt->bb X-Act-Checkin: gcc X-Git-Author: Filip Kastl X-Git-Refname: refs/users/pheeck/heads/sccp X-Git-Oldrev: 72b7332883ae3380f0e18280a89fa55ef00d0b2d X-Git-Newrev: 4900f66fec6385f670a4fa5d2ab10849ffe51c1b Message-Id: <20230302121325.CA8F1385842A@sourceware.org> Date: Thu, 2 Mar 2023 12:13:25 +0000 (GMT) List-Id: https://gcc.gnu.org/g:4900f66fec6385f670a4fa5d2ab10849ffe51c1b commit 4900f66fec6385f670a4fa5d2ab10849ffe51c1b Author: Filip Kastl Date: Tue Feb 28 13:14:38 2023 +0100 cleanup_after_replace: old_stmt->bb change to stmt->bb Diff: --- gcc/tree-ssa-propagate.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/tree-ssa-propagate.cc b/gcc/tree-ssa-propagate.cc index 01e125bb873..885839b26b4 100644 --- a/gcc/tree-ssa-propagate.cc +++ b/gcc/tree-ssa-propagate.cc @@ -1288,7 +1288,7 @@ cleanup_after_replace (gimple *old_stmt, gimple *stmt, bitmap need_eh_cleanup, bitmap need_ab_cleanup, vec stmts_to_fixup, bool can_make_abnormal_goto, bool was_noreturn) { - basic_block bb = old_stmt->bb; + basic_block bb = stmt->bb; /* If we cleaned up EH information from the statement, remove EH edges. */