aboutsummaryrefslogtreecommitdiff
path: root/gcc/function.cc
diff options
context:
space:
mode:
authorSimon Rainer <gcc.gnu@vvalter.com>2022-08-31 23:00:08 +0200
committerRichard Biener <rguenther@suse.de>2022-09-02 08:06:14 +0200
commit0b0a3cdbff64d97e7de3e0e2c26e965708064193 (patch)
treed285ecf1c0f7d1242fa58571fa94f0cc03796d7d /gcc/function.cc
parentbb0a1556df79d02cf570f5eb17a1b02a509f0be4 (diff)
downloadgcc-0b0a3cdbff64d97e7de3e0e2c26e965708064193.zip
gcc-0b0a3cdbff64d97e7de3e0e2c26e965708064193.tar.gz
gcc-0b0a3cdbff64d97e7de3e0e2c26e965708064193.tar.bz2
ipa: Fix throw in multi-versioned functions [PR106627]
Any multi-versioned function was implicitly declared as noexcept, which leads to an abort if an exception is thrown inside the function. The reason for this is that the function declaration is replaced by a newly created dispatcher declaration, which has TREE_NOTHROW always set to 1. Instead we need to set TREE_NOTHROW to the value of the original declaration. PR ipa/106627 gcc/ChangeLog: * config/i386/i386-features.cc (ix86_get_function_versions_dispatcher): Set TREE_NOTHROW correctly for dispatcher declaration. * config/rs6000/rs6000.cc (rs6000_get_function_versions_dispatcher): Likewise. gcc/testsuite/ChangeLog: * g++.target/i386/pr106627.C: New test.
Diffstat (limited to 'gcc/function.cc')
0 files changed, 0 insertions, 0 deletions