From: Rob Clark Date: Thu, 24 Oct 2019 18:24:15 +0000 (-0700) Subject: freedreno/ir3: remove obsolete comment X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=df229977c38c0dbebfe59e9270de4013381c0735;p=mesa.git 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 --- 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); }