]> gcc.gnu.org Git - gcc.git/commitdiff
combine.c (try_combine): Do not refer to is_replaced.
authorPaolo Bonzini <bonzini@gnu.org>
Mon, 1 Mar 2004 09:42:10 +0000 (09:42 +0000)
committerPaolo Bonzini <bonzini@gcc.gnu.org>
Mon, 1 Mar 2004 09:42:10 +0000 (09:42 +0000)
2004-03-01  Paolo Bonzini  <bonzini@gnu.org>

        * combine.c (try_combine):  Do not refer to is_replaced.
        (gen_lowpart_for_combine):  Perverse subregs now have a
        more politically correct name.
        * cse.c (cse_insn): Likewise.
        * jump.c: Fix bogus reference to delete_insn.

From-SVN: r78698

gcc/ChangeLog
gcc/combine.c
gcc/cse.c
gcc/jump.c

index a13eb92103ba006877d88489a173345f46a81b98..be143c8610a18c34bf29efca0b05d302f4da216f 100644 (file)
@@ -1,3 +1,11 @@
+2004-03-01  Paolo Bonzini  <bonzini@gnu.org>
+
+       * combine.c (try_combine):  Do not refer to is_replaced.
+       (gen_lowpart_for_combine):  Perverse subregs now have a
+       more politically correct name.
+       * cse.c (cse_insn): Likewise.
+       * jump.c: Fix bogus reference to delete_insn.
+
 2004-02-29  Mark Mitchell  <mark@codesourcery.com>
 
        PR debug/14328
index e6656e0671f9c79fa148dc90505f753ca13e9b79..01a68ff7094dd156e968404af24f81b6e359cd89 100644 (file)
@@ -1822,9 +1822,7 @@ try_combine (rtx i3, rtx i2, rtx i1, int *new_direct_jump_p)
 
   if (flag_expensive_optimizations)
     {
-      /* Pass pc_rtx so no substitutions are done, just simplifications.
-        The cases that we are interested in here do not involve the few
-        cases were is_replaced is checked.  */
+      /* Pass pc_rtx so no substitutions are done, just simplifications.  */
       if (i1)
        {
          subst_low_cuid = INSN_CUID (i1);
@@ -10049,7 +10047,7 @@ gen_lowpart_for_combine (enum machine_mode mode, rtx x)
        return gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
 
       /* If we want to refer to something bigger than the original memref,
-        generate a perverse subreg instead.  That will force a reload
+        generate a paradoxical subreg instead.  That will force a reload
         of the original memref X.  */
       if (GET_MODE_SIZE (GET_MODE (x)) < GET_MODE_SIZE (mode))
        return gen_rtx_SUBREG (mode, x, 0);
index 20a4b698ab86f306f6cceb85d2722a3891ee7ae0..420624865890e5211ca9eaf5f870eddace550bd7 100644 (file)
--- a/gcc/cse.c
+++ b/gcc/cse.c
@@ -5031,7 +5031,7 @@ cse_insn (rtx insn, rtx libcall_insn)
       /* It is no longer clear why we used to do this, but it doesn't
         appear to still be needed.  So let's try without it since this
         code hurts cse'ing widened ops.  */
-      /* If source is a perverse subreg (such as QI treated as an SI),
+      /* If source is a paradoxical subreg (such as QI treated as an SI),
         treat it as volatile.  It may do the work of an SI in one context
         where the extra bits are not being used, but cannot replace an SI
         in general.  */
index a1d4e06edde7f02e2b299b4fb14dca03e80bafa1..ff161b25e2e453cb8b9be4e3763031853c08ec92 100644 (file)
@@ -31,7 +31,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
    formerly used them.  The JUMP_LABEL info is sometimes looked
    at by later passes.
 
-   The subroutines delete_insn, redirect_jump, and invert_jump are used
+   The subroutines redirect_jump and invert_jump are used
    from other passes as well.  */
 
 #include "config.h"
This page took 0.08061 seconds and 5 git commands to generate.