aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Merrill <jason@redhat.com>2020-01-27 17:55:14 -0500
committerJason Merrill <jason@redhat.com>2020-01-28 09:50:32 -0500
commit0968f7da26221bfc9203cd557c8636c0a0f24018 (patch)
treeaff1ced72ba47d0b7b50320ba2b3fb13e27ac91a
parenta5ed4958a2c1b563e933b25ca3b481761cc40b07 (diff)
downloadgcc-0968f7da26221bfc9203cd557c8636c0a0f24018.zip
gcc-0968f7da26221bfc9203cd557c8636c0a0f24018.tar.gz
gcc-0968f7da26221bfc9203cd557c8636c0a0f24018.tar.bz2
c++: Function declared with typedef with eh-specification.
We just need to handle the exception specification like other properties of a function typedef. PR c++/90731 * decl.c (grokdeclarator): Propagate eh spec from typedef.
-rw-r--r--gcc/cp/ChangeLog5
-rw-r--r--gcc/cp/decl.c1
-rw-r--r--gcc/testsuite/g++.dg/cpp1z/noexcept-type22.C6
3 files changed, 12 insertions, 0 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 3d5c9a1..259b0c7 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,8 @@
+2020-01-28 Jason Merrill <jason@redhat.com>
+
+ PR c++/90731
+ * decl.c (grokdeclarator): Propagate eh spec from typedef.
+
2020-01-28 Martin Liska <mliska@suse.cz>
PR c++/92440
diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c
index e55de5d..6ad558e 100644
--- a/gcc/cp/decl.c
+++ b/gcc/cp/decl.c
@@ -12848,6 +12848,7 @@ grokdeclarator (const cp_declarator *declarator,
memfn_quals |= type_memfn_quals (type);
rqual = type_memfn_rqual (type);
type_quals = TYPE_UNQUALIFIED;
+ raises = TYPE_RAISES_EXCEPTIONS (type);
}
}
diff --git a/gcc/testsuite/g++.dg/cpp1z/noexcept-type22.C b/gcc/testsuite/g++.dg/cpp1z/noexcept-type22.C
new file mode 100644
index 0000000..dd9924f
--- /dev/null
+++ b/gcc/testsuite/g++.dg/cpp1z/noexcept-type22.C
@@ -0,0 +1,6 @@
+// PR c++/90731
+// { dg-do compile { target c++17 } }
+
+typedef void T() noexcept(true);
+T t;
+void t() noexcept(true);