freedreno/ir3: remove obsolete comment
authorRob Clark <robdclark@chromium.org>
Thu, 24 Oct 2019 18:24:15 +0000 (11:24 -0700)
committerRob Clark <robdclark@gmail.com>
Sat, 9 Nov 2019 02:49:15 +0000 (02:49 +0000)
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 <robdclark@chromium.org>
src/freedreno/ir3/ir3.h

index f334373757397f3bf3be9add983b607bccb40330..17c4178d963d3f1bcb61efcd8a003f26810494bb 100644 (file)
@@ -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);
 }