aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/tree.c')
-rw-r--r--gcc/tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree.c b/gcc/tree.c
index 3ba11be..2602803 100644
--- a/gcc/tree.c
+++ b/gcc/tree.c
@@ -6050,7 +6050,7 @@ private_is_attribute_p (const char *attr_name, size_t attr_len, const_tree ident
if (ident_len == attr_len)
{
- if (strcmp (attr_name, IDENTIFIER_POINTER (ident)) == 0)
+ if (id_equal (ident, attr_name))
return true;
}
else if (ident_len == attr_len + 4)