diff options
author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-10-16 21:58:35 +0000 |
---|---|---|
committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-10-16 21:58:35 +0000 |
commit | beebf8f985af661fe73ef916e2f7d5739b4d988a (patch) | |
tree | 942d41086fc0b8f60204d96ade1f8de1a6706578 /gcc/cp | |
parent | 9a24276ff9d72d77b7f1190753e23073a93e7fc6 (diff) | |
download | gcc-beebf8f985af661fe73ef916e2f7d5739b4d988a.tar.gz |
* pt.c (apply_late_template_attributes): Use
attribute_takes_identifier_p.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@203727 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp')
-rw-r--r-- | gcc/cp/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/cp/pt.c | 5 |
2 files changed, 4 insertions, 4 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 2091b9fc595..9b15f555687 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,5 +1,8 @@ 2013-10-16 Jason Merrill <jason@redhat.com> + * pt.c (apply_late_template_attributes): Use + attribute_takes_identifier_p. + * error.c (dump_exception_spec): Print "noexcept" rather than "noexcept (true)". diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c index a1eb7a2d35d..e9c3ce2ab99 100644 --- a/gcc/cp/pt.c +++ b/gcc/cp/pt.c @@ -8610,10 +8610,7 @@ apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags, pass it through tsubst. Attributes like mode, format, cleanup and several target specific attributes expect it unmodified. */ - else if (TREE_VALUE (t) - && TREE_CODE (TREE_VALUE (t)) == TREE_LIST - && TREE_VALUE (TREE_VALUE (t)) - && identifier_p (TREE_VALUE (TREE_VALUE (t)))) + else if (attribute_takes_identifier_p (TREE_PURPOSE (t))) { tree chain = tsubst_expr (TREE_CHAIN (TREE_VALUE (t)), args, complain, |