diff options
author | Hans-Peter Nilsson <hp@axis.se> | 1998-07-16 14:00:57 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-07-16 14:00:57 -0600 |
commit | 8d344fbc71f534f418970d9b8217f9473ae4dd75 (patch) | |
tree | f276abb706c5c690ddd4c3a7e8cc993999222fed /gcc | |
parent | 1865108319d2232c9220f7ef77d229ba49bd9f8e (diff) | |
download | gcc-8d344fbc71f534f418970d9b8217f9473ae4dd75.zip gcc-8d344fbc71f534f418970d9b8217f9473ae4dd75.tar.gz gcc-8d344fbc71f534f418970d9b8217f9473ae4dd75.tar.bz2 |
extend.texi (Explicit Reg Vars): Typo: change "may deleted" into "may be deleted"
(
* extend.texi (Explicit Reg Vars): Typo: change "may deleted" into "may
be deleted"
From-SVN: r21221
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/extend.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/extend.texi b/gcc/extend.texi index b867e9c..736f422 100644 --- a/gcc/extend.texi +++ b/gcc/extend.texi @@ -2593,7 +2593,7 @@ very often. Local register variables in specific registers do not reserve the registers. The compiler's data flow analysis is capable of determining where the specified registers contain live values, and where they are -available for other uses. Stores into local register variables may deleted +available for other uses. Stores into local register variables may be deleted when they appear to be dead according to dataflow analysis. References to local register variables may be deleted or moved or simplified. @@ -2746,7 +2746,7 @@ this variable in the register you specify at all times. You may not code an explicit reference to this register in an @code{asm} statement and assume it will always refer to this variable. -Stores into local register variables may deleted when they appear to be dead +Stores into local register variables may be deleted when they appear to be dead according to dataflow analysis. References to local register variables may be deleted or moved or simplified. |