aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/extend.texi2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 4f5a996..95cb78c 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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
diff --git a/gcc/extend.texi b/gcc/extend.texi
index 57f541a..5c52fcb 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