summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRob Clark <[email protected]>2019-10-24 11:24:15 -0700
committerRob Clark <[email protected]>2019-11-09 02:49:15 +0000
commitdf229977c38c0dbebfe59e9270de4013381c0735 (patch)
tree7f79f33126b8de04e9ac6fbf191f38affa5a84f5
parente804b42fd748dd72e853455a73c9dc6128460617 (diff)
freedreno/ir3: remove obsolete comment
The meta PHI instruction was removed long ago. And fanin/fanout themselves to not contribute actual instructions (at least not by the time you get to sched, they may prevent copy-propagating away a mov) Signed-off-by: Rob Clark <[email protected]>
-rw-r--r--src/freedreno/ir3/ir3.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/freedreno/ir3/ir3.h b/src/freedreno/ir3/ir3.h
index f3343737573..17c4178d963 100644
--- a/src/freedreno/ir3/ir3.h
+++ b/src/freedreno/ir3/ir3.h
@@ -774,10 +774,6 @@ static inline bool is_bool(struct ir3_instruction *instr)
static inline bool is_meta(struct ir3_instruction *instr)
{
- /* TODO how should we count PHI (and maybe fan-in/out) which
- * might actually contribute some instructions to the final
- * result?
- */
return (opc_cat(instr->opc) == -1);
}