* runtime/compile_options.c (set_options): Fix typos.

From-SVN: r226686
This commit is contained in:
Francois-Xavier Coudert 2015-08-06 17:42:19 +00:00 committed by François-Xavier Coudert
parent 1bcc5f29a7
commit 00ebbcbc59
2 changed files with 6 additions and 2 deletions

View File

@ -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> 2015-08-04 Uros Bizjak <ubizjak@gmail.com>
* config/fpu-387.h (get_fpu_trap_exceptions): Add temporary variable * config/fpu-387.h (get_fpu_trap_exceptions): Add temporary variable

View File

@ -161,7 +161,7 @@ set_options (int num, int options[])
compile_options.allow_std = options[1]; compile_options.allow_std = options[1];
if (num >= 3) if (num >= 3)
compile_options.pedantic = options[2]; 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 options array is retained due to ABI compatibility. Remove when
bumping the library ABI. */ bumping the library ABI. */
if (num >= 5) if (num >= 5)
@ -172,7 +172,7 @@ set_options (int num, int options[])
compile_options.bounds_check = options[6]; compile_options.bounds_check = options[6];
/* options[7] is the -frange-check option, which no longer affects /* options[7] is the -frange-check option, which no longer affects
the library behavior; range checking is now always done when 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. */ to ABI compatibility. Remove when bumping the library ABI. */
if (num >= 9) if (num >= 9)
compile_options.fpe_summary = options[8]; compile_options.fpe_summary = options[8];