aboutsummaryrefslogtreecommitdiff
path: root/libgfortran
diff options
context:
space:
mode:
authorFrancois-Xavier Coudert <fxcoudert@gcc.gnu.org>2015-08-06 17:42:19 +0000
committerFrançois-Xavier Coudert <fxcoudert@gcc.gnu.org>2015-08-06 17:42:19 +0000
commit00ebbcbc5990f11d0b2f5c0385b32cd587d4a4ac (patch)
treeca1a95016f212e1231284585ac64cf80a0b225a1 /libgfortran
parent1bcc5f29a71797dea523d8750dfb75a2b36920b3 (diff)
downloadgcc-00ebbcbc5990f11d0b2f5c0385b32cd587d4a4ac.zip
gcc-00ebbcbc5990f11d0b2f5c0385b32cd587d4a4ac.tar.gz
gcc-00ebbcbc5990f11d0b2f5c0385b32cd587d4a4ac.tar.bz2
* runtime/compile_options.c (set_options): Fix typos.
From-SVN: r226686
Diffstat (limited to 'libgfortran')
-rw-r--r--libgfortran/ChangeLog4
-rw-r--r--libgfortran/runtime/compile_options.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog
index 744a913..04a2b92 100644
--- a/libgfortran/ChangeLog
+++ b/libgfortran/ChangeLog
@@ -1,3 +1,7 @@
+2015-08-06 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
+
+ * runtime/compile_options.c (set_options): Fix typos.
+
2015-08-04 Uros Bizjak <ubizjak@gmail.com>
* config/fpu-387.h (get_fpu_trap_exceptions): Add temporary variable
diff --git a/libgfortran/runtime/compile_options.c b/libgfortran/runtime/compile_options.c
index 98f67f0..1bae1a2 100644
--- a/libgfortran/runtime/compile_options.c
+++ b/libgfortran/runtime/compile_options.c
@@ -161,7 +161,7 @@ set_options (int num, int options[])
compile_options.allow_std = options[1];
if (num >= 3)
compile_options.pedantic = options[2];
- /* options[3] is the removed -fdump-core option. It's place in the
+ /* options[3] is the removed -fdump-core option. Its place in the
options array is retained due to ABI compatibility. Remove when
bumping the library ABI. */
if (num >= 5)
@@ -172,7 +172,7 @@ set_options (int num, int options[])
compile_options.bounds_check = options[6];
/* options[7] is the -frange-check option, which no longer affects
the library behavior; range checking is now always done when
- parsing integers. It's place in the options array is retained due
+ parsing integers. Its place in the options array is retained due
to ABI compatibility. Remove when bumping the library ABI. */
if (num >= 9)
compile_options.fpe_summary = options[8];