* extend.texi: Fix typo.
authormmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 2 May 2001 00:52:58 +0000 (00:52 +0000)
committermmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 2 May 2001 00:52:58 +0000 (00:52 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41749 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/extend.texi

index 4f5a996..95cb78c 100644 (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
index 57f541a..5c52fcb 100644 (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