diff options
Diffstat (limited to 'gcc/rtl.def')
-rw-r--r-- | gcc/rtl.def | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/rtl.def b/gcc/rtl.def index 39c51d4a477..078f4af67ac 100644 --- a/gcc/rtl.def +++ b/gcc/rtl.def @@ -93,6 +93,12 @@ DEF_RTL_EXPR(EXPR_LIST, "expr_list", "ee", RTX_EXTRA) The insns are represented in print by their uids. */ DEF_RTL_EXPR(INSN_LIST, "insn_list", "ue", RTX_EXTRA) +/* a linked list of dependencies. + The insns are represented in print by their uids. + Operand 2 is a degree of speculativeness of the dependence. + Operand 3 is a degree of weakness of the dependence. */ +DEF_RTL_EXPR(DEPS_LIST, "deps_list", "uew", RTX_EXTRA) + /* SEQUENCE appears in the result of a `gen_...' function for a DEFINE_EXPAND that wants to make several insns. Its elements are the bodies of the insns that should be made. |