diff options
author | Ilya Enkovich <enkovich.gnu@gmail.com> | 2016-01-15 13:34:12 +0000 |
---|---|---|
committer | Ilya Enkovich <ienkovich@gcc.gnu.org> | 2016-01-15 13:34:12 +0000 |
commit | 5cc534c40286adcdec96642fc73f3053c4395284 (patch) | |
tree | 441578e2c93c5b972a5e6fe959fa8af2cbd08b6b /gcc/config | |
parent | 21cdb254eb2d3d5a2a7ccfbe4608b27eec05a6fd (diff) | |
download | gcc-5cc534c40286adcdec96642fc73f3053c4395284.zip gcc-5cc534c40286adcdec96642fc73f3053c4395284.tar.gz gcc-5cc534c40286adcdec96642fc73f3053c4395284.tar.bz2 |
i386.c (scalar_chain::compute_convert_gain): Fix typo.
gcc/
* config/i386/i386.c (scalar_chain::compute_convert_gain): Fix typo.
(convert_scalars_to_vector): Likewise.
From-SVN: r232424
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/i386/i386.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 92f3a41..ff976dd 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -3150,13 +3150,13 @@ scalar_chain::compute_convert_gain () } if (dump_file) - fprintf (dump_file, " Instruction convertion gain: %d\n", gain); + fprintf (dump_file, " Instruction conversion gain: %d\n", gain); EXECUTE_IF_SET_IN_BITMAP (defs_conv, 0, insn_uid, bi) cost += DF_REG_DEF_COUNT (insn_uid) * ix86_cost->mmxsse_to_integer; if (dump_file) - fprintf (dump_file, " Registers convertion cost: %d\n", cost); + fprintf (dump_file, " Registers conversion cost: %d\n", cost); gain -= cost; @@ -3531,7 +3531,7 @@ convert_scalars_to_vector () /* Find all instructions we want to convert into vector mode. */ if (dump_file) - fprintf (dump_file, "Searching for mode convertion candidates...\n"); + fprintf (dump_file, "Searching for mode conversion candidates...\n"); FOR_EACH_BB_FN (bb, cfun) { |