* extend.texi (Volatiles): Fix typos.
authorNathan Sidwell <nathan@codesourcery.com>
Fri, 11 Aug 2000 13:42:32 +0000 (13:42 +0000)
committerNathan Sidwell <nathan@gcc.gnu.org>
Fri, 11 Aug 2000 13:42:32 +0000 (13:42 +0000)
From-SVN: r35632

gcc/ChangeLog
gcc/extend.texi

index 42d7dba182761a0386b7e524bc36cafc88e094d5..5d53ed90acd79a22d13f54619f8d81f592d25d4f 100644 (file)
@@ -1,3 +1,7 @@
+2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * extend.texi (Volatiles): Fix typos.
+
 2000-08-11  Kazu Hirata  <kazu@hxi.com>
 
        * flow.c: Fix formatting.
index 4a8c87c2d73a3ad3c75a1a2cee6243a2016e9a81..7ec85bfdd4d38239de8ac1e4a08afd9ec795db2a 100644 (file)
@@ -3558,13 +3558,13 @@ works correctly.
 
 Both the C and C++ standard have the concept of volatile objects. These
 are normally accessed by pointers and used for accessing hardware. The
-standards encourage compilers to refrain from optimizations on
+standards encourage compilers to refrain from optimizations
 concerning accesses to volatile objects that it might perform on
 non-volatile objects. The C standard leaves it implementation defined
 as to what constitutes a volatile access. The C++ standard omits to
 specify this, except to say that C++ should behave in a similar manner
 to C with respect to volatiles, where possible. The minimum either
-standard specifies is that at a sequence point all previous access to
+standard specifies is that at a sequence point all previous accesses to
 volatile objects have stabilized and no subsequent accesses have
 occurred. Thus an implementation is free to reorder and combine
 volatile accesses which occur between sequence points, but cannot do so