diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4f5a9964ed0..95cb78c0be2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-05-01 Mark Mitchell + + * extend.texi: Fix typo. + 2001-05-01 Stan Shebs * objc/objc-act.c (build_module_descriptor): Clear DECL_CONTEXT diff --git a/gcc/extend.texi b/gcc/extend.texi index 57f541a7305..5c52fcb44af 100644 --- a/gcc/extend.texi +++ b/gcc/extend.texi @@ -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