aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Mitchell <mark@codesourcery.com>2001-05-02 00:52:58 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>2001-05-02 00:52:58 +0000
commitbd78000b116cbf8e4d801f2e5dddd8e371af8b73 (patch)
tree00bf881c44ae5eeedd74cc7f7ee65041c81687e8
parentbcecb0b06d620b344975f66a95fd3b010e056e29 (diff)
downloadgcc-bd78000b116cbf8e4d801f2e5dddd8e371af8b73.zip
gcc-bd78000b116cbf8e4d801f2e5dddd8e371af8b73.tar.gz
gcc-bd78000b116cbf8e4d801f2e5dddd8e371af8b73.tar.bz2
* extend.texi: Fix typo.
From-SVN: r41749
-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