OSDN Git Service

Daily bump.
[pf3gnuchains/gcc-fork.git] / gcc / expmed.c
index d9a4001..033d949 100644 (file)
@@ -2022,7 +2022,7 @@ extract_split_bit_field (rtx op0, unsigned HOST_WIDE_INT bitsize,
   else
     {
       unit = MIN (MEM_ALIGN (op0), BITS_PER_WORD);
-      if (bitsize / unit > 2)
+      if (0 && bitsize / unit > 2)
        {
          rtx tmp = extract_force_align_mem_bit_field (op0, bitsize, bitpos,
                                                       unsignedp);
@@ -2555,7 +2555,7 @@ synth_mult (struct algorithm *alg_out, unsigned HOST_WIDE_INT t,
          /* If the target has a cheap shift-and-add instruction use
             that in preference to a shift insn followed by an add insn.
             Assume that the shift-and-add is "atomic" with a latency
-            equal to it's cost, otherwise assume that on superscalar
+            equal to its cost, otherwise assume that on superscalar
             hardware the shift may be executed concurrently with the
             earlier steps in the algorithm.  */
          op_cost = add_cost[mode] + shift_cost[mode][m];