]> git.ipfire.org Git - thirdparty/gcc.git/commit
ipa: Fix CFG fix-up in IPA-CP transform phase (PR 103441)
authorMartin Jambor <mjambor@suse.cz>
Sat, 27 Nov 2021 00:00:56 +0000 (01:00 +0100)
committerMartin Jambor <mjambor@suse.cz>
Sat, 27 Nov 2021 00:01:46 +0000 (01:01 +0100)
commit9e2e47391b316493b52fbb47b4b992b0863795dd
treec7814635be4235c151fd499188df1bbe1e7ff28c
parent52b769437a4d1ca50f4ef5bdad65b12115ded845
ipa: Fix CFG fix-up in IPA-CP transform phase (PR 103441)

I forgot that IPA passes before ipa-inline must not return
TODO_cleanup_cfg from their transformation function because ordinary
CFG cleanup does not remove call graph edges associated with removed
call statements but must use
delete_unreachable_blocks_update_callgraph instead.  This patch fixes
that error.

gcc/ChangeLog:

2021-11-26  Martin Jambor  <mjambor@suse.cz>

PR ipa/103441
* ipa-prop.c (ipcp_transform_function): Call
delete_unreachable_blocks_update_callgraph instead of returning
TODO_cleanup_cfg.
gcc/ipa-prop.c