* extend.texi: Fix typo.
authorMark Mitchell <mark@codesourcery.com>
Wed, 2 May 2001 00:52:58 +0000 (00:52 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Wed, 2 May 2001 00:52:58 +0000 (00:52 +0000)
From-SVN: r41749

gcc/ChangeLog
gcc/extend.texi

index 4f5a9964ed02e1b693efcce0eefcbc428a324cdd..95cb78c0be2caead491f9d29ea8f433f6d9182d6 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 57f541a7305f69c4d579f2dd7224480e5ff70f9d..5c52fcb44afdc3d4c5c29fee5236132870a6d849 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