re PR other/49658 (Typo in gcc/doc/extend.texi)

2011-07-06  Jonathan Wakely  <jwakely.gcc@gmail.com>

	PR other/49658
	* doc/extend.texi (Compound Literals): Fix typo.

From-SVN: r175928
This commit is contained in:
Jonathan Wakely 2011-07-06 18:40:36 +00:00 committed by Jonathan Wakely
parent d75dae75d7
commit 49d6830d66
2 changed files with 6 additions and 1 deletions

View file

@ -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

View file

@ -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.