aboutsummaryrefslogtreecommitdiff
path: root/gcc/df.h
diff options
context:
space:
mode:
authorDaniel Berlin <dberlin@dberlin.org>2005-02-28 03:48:13 +0000
committerDaniel Berlin <dberlin@dberlin.org>2005-02-28 03:48:13 +0000
commitff5f58a960ef5ebef296b78380ac21ec73eb60d3 (patch)
tree6b416e8523c502a82d386c98de1a39da6527b040 /gcc/df.h
parentf9f5c9e8498b005d223e54abc259d8edc19f22f3 (diff)
Merge from the pain trainstructure-aliasing-branch
git-svn-id: https://gcc.gnu.org/svn/gcc/branches/structure-aliasing-branch@95649 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/df.h')
-rw-r--r--gcc/df.h18
1 files changed, 3 insertions, 15 deletions
diff --git a/gcc/df.h b/gcc/df.h
index a916bc5b2a7..60f6030fae1 100644
--- a/gcc/df.h
+++ b/gcc/df.h
@@ -1,6 +1,7 @@
/* Form lists of pseudo register references for autoinc optimization
for GNU compiler. This is part of flow optimization.
- Copyright (C) 1999, 2000, 2001, 2003, 2004 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005
+ Free Software Foundation, Inc.
Contributed by Michael P. Hayes (m.hayes@elec.canterbury.ac.nz)
This file is part of GCC.
@@ -57,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
};