summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2020-04-23 09:54:14 +0200
committerJakub Jelinek <jakub@redhat.com>2020-04-23 09:54:14 +0200
commite2a71816b4949225498bec37e947293aa7f5841b (patch)
treee4fc947b0d1b948672080b498981a07afe09841d
parent49fc9f36a36e228c4fafb1a6a99fcfef83ff048e (diff)
attribs: Don't diagnose attribute exclusions during error recovery [PR94705]
On the following testcase GCC ICEs, because last_decl is error_mark_node, and diag_attr_exclusions assumes that if it is not NULL, it must be a decl. The following patch just doesn't diagnose attribute exclusions if the other decl is erroneous (and thus we've already reported errors for it). 2020-04-23 Jakub Jelinek <jakub@redhat.com> PR c/94705 * attribs.c (decl_attribute): Don't diagnose attribute exclusions if last_decl is error_mark_node or has such a TREE_TYPE. * gcc.dg/pr94705.c: New test.
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/attribs.c3
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/gcc.dg/pr94705.c13
4 files changed, 26 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 085135c7a08..06f7eda0033 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2020-04-23 Jakub Jelinek <jakub@redhat.com>
+
+ PR c/94705
+ * attribs.c (decl_attribute): Don't diagnose attribute exclusions
+ if last_decl is error_mark_node or has such a TREE_TYPE.
+
2020-04-22 Felix Yang <felix.yang@huawei.com>
PR target/94678
diff --git a/gcc/attribs.c b/gcc/attribs.c
index c66d4ae2c06..7d0f4b5b7b4 100644
--- a/gcc/attribs.c
+++ b/gcc/attribs.c
@@ -677,7 +677,8 @@ decl_attributes (tree *node, tree attributes, int flags,
reject incompatible attributes. */
bool built_in = flags & ATTR_FLAG_BUILT_IN;
if (spec->exclude
- && (flag_checking || !built_in))
+ && (flag_checking || !built_in)
+ && !error_operand_p (last_decl))
{
/* Always check attributes on user-defined functions.
Check them on built-ins only when -fchecking is set.
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 1115eb76968..684e408c1a5 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2020-04-23 Jakub Jelinek <jakub@redhat.com>
+
+ PR c/94705
+ * gcc.dg/pr94705.c: New test.
+
2020-04-22 Patrick Palka <ppalka@redhat.com>
PR c++/94719
diff --git a/gcc/testsuite/gcc.dg/pr94705.c b/gcc/testsuite/gcc.dg/pr94705.c
new file mode 100644
index 00000000000..96392ab60ee
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/pr94705.c
@@ -0,0 +1,13 @@
+/* PR c/94705 */
+/* { dg-do compile } */
+/* { dg-options "" } */
+
+void foo ();
+
+int
+bar (void)
+{
+ foo (baz); /* { dg-error "'baz' undeclared" } */
+ /* { dg-message "only once" "" { target *-*-* } .-1 } */
+ void __attribute__ ((noinline)) baz (void);
+}