summaryrefslogtreecommitdiffstats
path: root/src/util/register_allocate.h
diff options
context:
space:
mode:
authorJason Ekstrand <[email protected]>2015-08-15 09:43:05 -0700
committerJason Ekstrand <[email protected]>2015-08-18 17:48:45 -0700
commit9b49284c223b284295675775d4344f066b4455db (patch)
treef9b7e8da578da579ff49c6ffb03db558962c9f7b /src/util/register_allocate.h
parent7c8e53f1bee370c1a8a0c640313c12df220f4114 (diff)
util/ra: Add a function for making all conflicts on a register transitive
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/util/register_allocate.h')
-rw-r--r--src/util/register_allocate.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/register_allocate.h b/src/util/register_allocate.h
index 61f182eff49..ed3854cec7d 100644
--- a/src/util/register_allocate.h
+++ b/src/util/register_allocate.h
@@ -51,6 +51,7 @@ void ra_add_reg_conflict(struct ra_regs *regs,
unsigned int r1, unsigned int r2);
void ra_add_transitive_reg_conflict(struct ra_regs *regs,
unsigned int base_reg, unsigned int reg);
+void ra_make_reg_conflicts_transitive(struct ra_regs *regs, unsigned int reg);
void ra_class_add_reg(struct ra_regs *regs, unsigned int c, unsigned int reg);
void ra_set_num_conflicts(struct ra_regs *regs, unsigned int class_a,
unsigned int class_b, unsigned int num_conflicts);