From 40a056db512bbbe610e46f328b3cc28243ab965a Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Tue, 16 May 2023 10:09:36 -0400 Subject: [PATCH] nir: Remove stale TODOs If nobody has added def-use lists for registers in all this time, it's probably because we don't want them after all ;) Signed-off-by: Alyssa Rosenzweig Reviewed-by: Faith Ekstrand Part-of: --- src/compiler/nir/nir.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h index 95c82577a4a..3deb40cfa64 100644 --- a/src/compiler/nir/nir.h +++ b/src/compiler/nir/nir.h @@ -970,8 +970,6 @@ typedef struct { nir_register *reg; struct nir_src *indirect; /** < NULL for no indirect offset */ unsigned base_offset; - - /* TODO use-def chain goes here */ } nir_reg_src; typedef struct { @@ -981,8 +979,6 @@ typedef struct { nir_register *reg; struct nir_src *indirect; /** < NULL for no indirect offset */ unsigned base_offset; - - /* TODO def-use chain goes here */ } nir_reg_dest; struct nir_if;