aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Sebor <msebor@redhat.com>2020-01-10 17:04:00 +0000
committerMartin Sebor <msebor@gcc.gnu.org>2020-01-10 10:04:00 -0700
commitf25e33fa1b62a6f6c8dddf8e6a7961fae6847a0e (patch)
tree88ce9f9f24cbdac4e53f3a41c5ea98f9aac5a2c4
parentb2f5b38042f6a8772237d37cdf20fc139ed0f8fe (diff)
downloadgcc-f25e33fa1b62a6f6c8dddf8e6a7961fae6847a0e.zip
gcc-f25e33fa1b62a6f6c8dddf8e6a7961fae6847a0e.tar.gz
gcc-f25e33fa1b62a6f6c8dddf8e6a7961fae6847a0e.tar.bz2
PR c/93132 - bogus 'attribute((access))' warning when size-index is specified
gcc/c-family/ChangeLog: PR c/93132 * c-attribs.c (append_access_attrs): Validate against the translated access string rather than the human-readable representation. gcc/testsuite/ChangeLog: PR c/93132 * gcc.dg/attr-access-read-only-2.c: New test. From-SVN: r280124
-rw-r--r--gcc/c-family/ChangeLog6
-rw-r--r--gcc/c-family/c-attribs.c7
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/gcc.dg/attr-access-read-only-2.c16
4 files changed, 31 insertions, 3 deletions
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog
index ca6609f..5448acf 100644
--- a/gcc/c-family/ChangeLog
+++ b/gcc/c-family/ChangeLog
@@ -1,3 +1,9 @@
+2020-01-10 Martin Sebor <msebor@redhat.com>
+
+ PR c/93132
+ * c-attribs.c (append_access_attrs): Validate against the translated
+ access string rather than the human-readable representation.
+
2020-01-01 Jakub Jelinek <jakub@redhat.com>
Update copyright years.
diff --git a/gcc/c-family/c-attribs.c b/gcc/c-family/c-attribs.c
index 77649e8..dc9579c 100644
--- a/gcc/c-family/c-attribs.c
+++ b/gcc/c-family/c-attribs.c
@@ -3970,14 +3970,15 @@ append_access_attrs (tree t, tree attrs, const char *attrstr,
return NULL_TREE;
}
- if (n2 && strncmp (attrstr + n1 + 1, pos + n1, n2))
+ if (n2 && strncmp (attrspec + n1 + 1, pos + n1, n2))
{
/* Mismatch in the value of the size argument. */
auto_diagnostic_group d;
if (warning (OPT_Wattributes,
- "attribute %qs mismatch positional argument "
+ "attribute %qs mismatched positional argument "
"values %i and %i",
- attrstr, atoi (attrstr + n1 + 1), atoi (pos + n1))
+ attrstr, atoi (attrspec + n1 + 1) + 1,
+ atoi (pos + n1) + 1)
&& DECL_P (t))
inform (DECL_SOURCE_LOCATION (t),
"previous declaration here");
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 8dc47ea..4c7a615 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2020-01-10 Martin Sebor <msebor@redhat.com>
+
+ PR c/93132
+ * gcc.dg/attr-access-read-only-2.c: New test.
+
2020-01-10 Richard Sandiford <richard.sandiford@arm.com>
* gcc.target/aarch64/sve/sel_1.c: Use SVE types for the arguments and
diff --git a/gcc/testsuite/gcc.dg/attr-access-read-only-2.c b/gcc/testsuite/gcc.dg/attr-access-read-only-2.c
new file mode 100644
index 0000000..d3069b0
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/attr-access-read-only-2.c
@@ -0,0 +1,16 @@
+/* PR c/93132 - bogus 'attribute((access))' warning when size-index
+ is specified
+ { dg-do compile }
+ { dg-options "-Wall" } */
+
+void __attribute__ ((access (read_only, 1, 5)))
+f (void*, int, int, int, int); // { dg-message "previous declaration" }
+
+void __attribute__ ((access (read_only, 1, 3)))
+f (void*, int, int, int, int); // { dg-warning "attribute 'access\\\(read_only, 1, 3\\\)' mismatched positional argument values 3 and 5" }
+
+void __attribute__ ((access (read_only, 1, 4)))
+f (void*, int, int, int, int); // { dg-warning "attribute 'access\\\(read_only, 1, 4\\\)' mismatched positional argument values 4 and 5" }
+
+void __attribute__ ((access (read_only, 1, 5)))
+f (void*, int, int, int, int);