diff options
author | Jason Merrill <jason@gcc.gnu.org> | 1999-04-13 18:23:19 -0400 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 1999-04-13 18:23:19 -0400 |
commit | 9db83085a51e47be33b29e356d6cbd4798548346 (patch) | |
tree | 9c3f0314e69a9faa8775f1ce46f99d24e39ba5a6 /gcc | |
parent | 615c8231941422a63207b99b2db5afa6b2d6199b (diff) | |
download | gcc-9db83085a51e47be33b29e356d6cbd4798548346.zip gcc-9db83085a51e47be33b29e356d6cbd4798548346.tar.gz gcc-9db83085a51e47be33b29e356d6cbd4798548346.tar.bz2 |
tweak
From-SVN: r26425
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cp/tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cp/tree.c b/gcc/cp/tree.c index 7eceff1..1d717b2a 100644 --- a/gcc/cp/tree.c +++ b/gcc/cp/tree.c @@ -2704,7 +2704,7 @@ cp_valid_lang_attribute (attr_name, attr_args, decl, type) tree decl ATTRIBUTE_UNUSED; tree type ATTRIBUTE_UNUSED; { - if (attr_name == get_identifier ("com_interface")) + if (is_attribute_p ("com_interface", attr_name)) { if (! flag_vtable_thunks) { @@ -2724,7 +2724,7 @@ cp_valid_lang_attribute (attr_name, attr_args, decl, type) CLASSTYPE_COM_INTERFACE (type) = 1; return 1; } - else if (attr_name == get_identifier ("init_priority")) + else if (is_attribute_p ("init_priority", attr_name)) { tree initp_expr = (attr_args ? TREE_VALUE (attr_args): NULL_TREE); int pri; |