* extend.texi: Fix typo.

From-SVN: r41749
This commit is contained in:
Mark Mitchell 2001-05-02 00:52:58 +00:00 committed by Mark Mitchell
parent bcecb0b06d
commit bd78000b11
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2001-05-01 Mark Mitchell <mark@codesourcery.com>
* extend.texi: Fix typo.
2001-05-01 Stan Shebs <shebs@apple.com>
* objc/objc-act.c (build_module_descriptor): Clear DECL_CONTEXT

View file

@ -3062,7 +3062,7 @@ instruction.) In addition, GCC will not reschedule instructions
across a volatile @code{asm} instruction. For example:
@example
(volatile int *)addr = foo;
*(volatile int *)addr = foo;
asm volatile ("eieio" : : );
@end example