* df.h (DF_REF_MODE_CHANGE, DF_REF_MEM_OK): Remove.
authorKazu Hirata <kazu@cs.umass.edu>
Thu, 10 Feb 2005 18:46:31 +0000 (18:46 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Thu, 10 Feb 2005 18:46:31 +0000 (18:46 +0000)
From-SVN: r94839

gcc/ChangeLog
gcc/df.h

index 19427c3d5f845be58ab8692f4d0e44ad744e4476..8404c198947ca9f8f4b3510fd71613eacada81c1 100644 (file)
@@ -1,3 +1,7 @@
+2005-02-10  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * df.h (DF_REF_MODE_CHANGE, DF_REF_MEM_OK): Remove.
+
 2005-02-10  Jeff Law  <law@redhat.com>
 
        * tree-ssa-dom.c (thread_across_edge): Use xmalloc, not xcalloc.
index 0bd2bb43e73f598feecd220b8f3e0b8b1e8bd52e..60f6030fae15ec305f8b55f9fa8b06f8953b0234 100644 (file)
--- a/gcc/df.h
+++ b/gcc/df.h
@@ -58,23 +58,10 @@ enum df_ref_flags
        independent.  */
     DF_REF_READ_WRITE = 1,
 
-    /* This flag is set on register references inside a subreg on
-       machines which have CANNOT_CHANGE_MODE_CLASS.
-       Note, that this flag can also be set on df_refs representing
-       the REG itself (i.e., one might not see the subreg anymore).
-       Also note, that this flag is set also for hardreg refs, i.e.,
-       you must check yourself if it's a pseudo.  */
-    DF_REF_MODE_CHANGE = 2,
-
     /* This flag is set, if we stripped the subreg from the reference.
        In this case we must make conservative guesses, at what the
        outer mode was.  */
-    DF_REF_STRIPPED = 4,
-
-    /* This flag is set during register allocation if it's okay for
-    the reference's INSN to have one of its operands replaced with a
-    memory reference.  */
-    DF_REF_MEM_OK = 8
+    DF_REF_STRIPPED = 2
   };