diff options
author | Rob Clark <[email protected]> | 2019-10-24 10:22:33 -0700 |
---|---|---|
committer | Rob Clark <[email protected]> | 2019-11-12 13:55:03 -0800 |
commit | 611258d5782c9b1c4d5e5b26f544d199404a511f (patch) | |
tree | 93dd063163d42d025fc4585c8a9c97aa6684ed87 /src/freedreno/ir3/ir3_group.c | |
parent | 4af86bd0b933179b9f61c74d055ae8565c59276c (diff) |
freedreno/ir3: rename fanin/fanout to collect/split
If I'm going to refactor a bit to use these meta instructions to also
handle input/output, then might as well cleanup the names first.
Nouveau also uses collect/split for names of these meta instructions,
and I like those names better.
Signed-off-by: Rob Clark <[email protected]>
Reviewed-by: Kristian H. Kristensen <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/freedreno/ir3/ir3_group.c')
-rw-r--r-- | src/freedreno/ir3/ir3_group.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/freedreno/ir3/ir3_group.c b/src/freedreno/ir3/ir3_group.c index bd7ef2b612e..e9eb1e58d47 100644 --- a/src/freedreno/ir3/ir3_group.c +++ b/src/freedreno/ir3/ir3_group.c @@ -185,7 +185,7 @@ instr_find_neighbors(struct ir3_instruction *instr) if (ir3_instr_check_mark(instr)) return; - if (instr->opc == OPC_META_FI) + if (instr->opc == OPC_META_COLLECT) group_n(&instr_ops, instr, instr->regs_count - 1); foreach_ssa_src(src, instr) |