From a18a9172371d2cb1375b02aaccfa7ea876882e2f Mon Sep 17 00:00:00 2001 From: Faith Ekstrand Date: Wed, 20 Mar 2024 17:23:22 -0500 Subject: [PATCH] nir: Improve the comment for nir_block::imm_dom MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Alyssa Rosenzweig Reviewed-by: Daniel Schürmann Part-of: --- src/compiler/nir/nir.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h index c82b9a7d7b9..876c3800781 100644 --- a/src/compiler/nir/nir.h +++ b/src/compiler/nir/nir.h @@ -2921,7 +2921,7 @@ typedef struct nir_block { /* * this node's immediate dominator in the dominance tree - set to NULL for - * the start block. + * the start block and any unreachable blocks. */ struct nir_block *imm_dom;