diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 21f550c6d99cd344f891fad6bae57055330cf1f3..147b828facf021014c1cdd590da224c643b4dabb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2011-07-06 Jonathan Wakely <jwakely.gcc@gmail.com> + + PR other/49658 + * doc/extend.texi (Compound Literals): Fix typo. + 2011-07-06 James Greenhalgh <james.greenhalgh@arm.com> * config/arm/arm.h (TARGET_CPU_CPP_BUILTINS): Add diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index 5b80616c9690959dad9a59d6286c21b1a8a3836c..1817f5123d1e6d8a7e5db342a41f5755dfb8891c 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -1629,7 +1629,7 @@ such an initializer, as shown here: char **foo = (char *[]) @{ "x", "y", "z" @}; @end smallexample -Compound literals for scalar types and union types are is +Compound literals for scalar types and union types are also allowed, but then the compound literal is equivalent to a cast.