diff options
author | glisse <glisse@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-02-03 19:07:55 +0000 |
---|---|---|
committer | glisse <glisse@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-02-03 19:07:55 +0000 |
commit | caf62483f30035efca2958615a466f73cc99880e (patch) | |
tree | ab881259a5ba57d9b1f3a45c2e5aedcfb8af1dd0 /gcc/doc/extend.texi | |
parent | d86e71c1ed4560b20eb072908dab671e7daa467f (diff) | |
download | gcc-caf62483f30035efca2958615a466f73cc99880e.tar.gz |
2014-02-03 Marc Glisse <marc.glisse@inria.fr>
PR c++/53017
PR c++/59211
gcc/c-family/
* c-common.c (handle_aligned_attribute, handle_alloc_size_attribute,
handle_vector_size_attribute, handle_nonnull_attribute): Call
default_conversion on the attribute argument.
(handle_nonnull_attribute): Increment the argument number.
gcc/cp/
* tree.c (handle_init_priority_attribute): Call default_conversion on
the attribute argument.
gcc/
* doc/extend.texi (Function Attributes): Typo.
gcc/testsuite/
* c-c++-common/attributes-1.c: New testcase.
* g++.dg/cpp0x/constexpr-attribute2.C: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@207436 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/doc/extend.texi')
-rw-r--r-- | gcc/doc/extend.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index 48a8e990d1a..a42e90490c0 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -2241,7 +2241,7 @@ For instance, @smallexample void* my_calloc(size_t, size_t) __attribute__((alloc_size(1,2))) -void my_realloc(void*, size_t) __attribute__((alloc_size(2))) +void* my_realloc(void*, size_t) __attribute__((alloc_size(2))) @end smallexample @noindent |