aboutsummaryrefslogtreecommitdiff
path: root/libgfortran/runtime
diff options
context:
space:
mode:
authorfxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4>2015-08-06 17:42:19 +0000
committerfxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4>2015-08-06 17:42:19 +0000
commite2de240f1665cb5830152134c671c5c165e994aa (patch)
treeca1a95016f212e1231284585ac64cf80a0b225a1 /libgfortran/runtime
parent894e21b5e7a96c90f22f3261edb3ac2bfaaab428 (diff)
* runtime/compile_options.c (set_options): Fix typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@226686 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/runtime')
-rw-r--r--libgfortran/runtime/compile_options.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libgfortran/runtime/compile_options.c b/libgfortran/runtime/compile_options.c
index 98f67f07058..1bae1a294d8 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];