diff options
author | Bob Duff <duff@adacore.com> | 2019-07-05 07:01:54 +0000 |
---|---|---|
committer | Pierre-Marie de Rodat <pmderodat@gcc.gnu.org> | 2019-07-05 07:01:54 +0000 |
commit | 8518042a54fde0880fabc3e380e9549ad13de601 (patch) | |
tree | 87de1f128aa9c85ce75742367416f631108ee3d9 | |
parent | 8e28429a9395c3c9ed58e4aaa7f6d8b32931f18e (diff) | |
download | gcc-8518042a54fde0880fabc3e380e9549ad13de601.zip gcc-8518042a54fde0880fabc3e380e9549ad13de601.tar.gz gcc-8518042a54fde0880fabc3e380e9549ad13de601.tar.bz2 |
[Ada] Fix typo in GNAT RM
2019-07-05 Bob Duff <duff@adacore.com>
gcc/ada/
* doc/gnat_rm/standard_and_implementation_defined_restrictions.rst:
Fix typo.
* gnat_rm.texi: Regenerate.
From-SVN: r273104
-rw-r--r-- | gcc/ada/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/ada/doc/gnat_rm/standard_and_implementation_defined_restrictions.rst | 2 | ||||
-rw-r--r-- | gcc/ada/gnat_rm.texi | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 9f7ee9d..eacc5f2 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,5 +1,11 @@ 2019-07-05 Bob Duff <duff@adacore.com> + * doc/gnat_rm/standard_and_implementation_defined_restrictions.rst: + Fix typo. + * gnat_rm.texi: Regenerate. + +2019-07-05 Bob Duff <duff@adacore.com> + * exp_attr.adb (Input): Take the No_Stream_Optimizations restriction into account. diff --git a/gcc/ada/doc/gnat_rm/standard_and_implementation_defined_restrictions.rst b/gcc/ada/doc/gnat_rm/standard_and_implementation_defined_restrictions.rst index 7b599be..cfa6356 100644 --- a/gcc/ada/doc/gnat_rm/standard_and_implementation_defined_restrictions.rst +++ b/gcc/ada/doc/gnat_rm/standard_and_implementation_defined_restrictions.rst @@ -633,7 +633,7 @@ No_Stream_Optimizations [GNAT] This restriction affects the performance of stream operations on types ``String``, ``Wide_String`` and ``Wide_Wide_String``. By default, the compiler uses block reads and writes when manipulating ``String`` objects -due to their supperior performance. When this restriction is in effect, the +due to their superior performance. When this restriction is in effect, the compiler performs all IO operations on a per-character basis. No_Streams diff --git a/gcc/ada/gnat_rm.texi b/gcc/ada/gnat_rm.texi index 268ae30..e67fb7b 100644 --- a/gcc/ada/gnat_rm.texi +++ b/gcc/ada/gnat_rm.texi @@ -12838,7 +12838,7 @@ user-defined storage pool. [GNAT] This restriction affects the performance of stream operations on types @code{String}, @code{Wide_String} and @code{Wide_Wide_String}. By default, the compiler uses block reads and writes when manipulating @code{String} objects -due to their supperior performance. When this restriction is in effect, the +due to their superior performance. When this restriction is in effect, the compiler performs all IO operations on a per-character basis. @node No_Streams,No_Task_Allocators,No_Stream_Optimizations,Partition-Wide Restrictions |