aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.h
diff options
context:
space:
mode:
authorVladimir Makarov <vmakarov@redhat.com>2002-04-29 22:34:36 +0000
committerVladimir Makarov <vmakarov@gcc.gnu.org>2002-04-29 22:34:36 +0000
commitfae15c9379dda2310d8e8af569c7888a9c7909ca (patch)
tree711c3d2354156033007c12671e96ba4e545ef452 /gcc/rtl.h
parenta2ff290c023adcda10f3dec64397812c907c4f48 (diff)
downloadgcc-fae15c9379dda2310d8e8af569c7888a9c7909ca.zip
gcc-fae15c9379dda2310d8e8af569c7888a9c7909ca.tar.gz
gcc-fae15c9379dda2310d8e8af569c7888a9c7909ca.tar.bz2
2002-04-29 Vladimir Makarov <vmakarov@redhat.com>
Merging code from dfa-branch: From-SVN: r52915
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r--gcc/rtl.h14
1 files changed, 1 insertions, 13 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h
index efa66c2..4535929 100644
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -130,11 +130,9 @@ struct rtx_def
/* 1 in an INSN if it can alter flow of control
within this function.
MEM_KEEP_ALIAS_SET_P in a MEM.
- LINK_COST_ZERO in an INSN_LIST.
SET_IS_RETURN_P in a SET. */
unsigned int jump : 1;
- /* 1 in an INSN if it can call another function.
- LINK_COST_FREE in an INSN_LIST. */
+ /* 1 in an INSN if it can call another function. */
unsigned int call : 1;
/* 1 in a REG if value of this expression will never change during
the current function, even though it is not manifestly constant.
@@ -983,16 +981,6 @@ do { \
with the preceding insn. */
#define SCHED_GROUP_P(INSN) ((INSN)->in_struct)
-/* During sched, for the LOG_LINKS of an insn, these cache the adjusted
- cost of the dependence link. The cost of executing an instruction
- may vary based on how the results are used. LINK_COST_ZERO is 1 when
- the cost through the link varies and is unchanged (i.e., the link has
- zero additional cost). LINK_COST_FREE is 1 when the cost through the
- link is zero (i.e., the link makes the cost free). In other cases,
- the adjustment to the cost is recomputed each time it is needed. */
-#define LINK_COST_ZERO(X) ((X)->jump)
-#define LINK_COST_FREE(X) ((X)->call)
-
/* For a SET rtx, SET_DEST is the place that is set
and SET_SRC is the value it is set to. */
#define SET_DEST(RTX) XC2EXP(RTX, 0, SET, CLOBBER)