[Mesa-dev] [PATCH 18/18] ac/nir: remove backlink to nir_to_llvm_context

Samuel Pitoiset samuel.pitoiset at gmail.com
Fri Feb 9 12:54:35 UTC 2018


Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
---
 src/amd/common/ac_nir_to_llvm.c | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/src/amd/common/ac_nir_to_llvm.c b/src/amd/common/ac_nir_to_llvm.c
index 70718853ec..024d6ba547 100644
--- a/src/amd/common/ac_nir_to_llvm.c
+++ b/src/amd/common/ac_nir_to_llvm.c
@@ -46,8 +46,6 @@ enum radeon_llvm_calling_convention {
 #define RADEON_LLVM_MAX_INPUTS (VARYING_SLOT_VAR31 + 1)
 #define RADEON_LLVM_MAX_OUTPUTS (VARYING_SLOT_VAR31 + 1)
 
-struct nir_to_llvm_context;
-
 struct ac_nir_context {
 	struct ac_llvm_context ac;
 	struct ac_shader_abi *abi;
@@ -66,8 +64,6 @@ struct ac_nir_context {
 
 	int num_locals;
 	LLVMValueRef *locals;
-
-	struct nir_to_llvm_context *nctx; /* TODO get rid of this */
 };
 
 struct nir_to_llvm_context {
@@ -6678,7 +6674,6 @@ void ac_nir_translate(struct ac_llvm_context *ac, struct ac_shader_abi *abi,
 	ctx.ac = *ac;
 	ctx.abi = abi;
 
-	ctx.nctx = nctx;
 	if (nctx)
 		nctx->nir = &ctx;
 
@@ -7177,7 +7172,6 @@ void ac_create_gs_copy_shader(LLVMTargetMachineRef tm,
 	nir_ctx.ac = ctx.ac;
 	nir_ctx.abi = &ctx.abi;
 
-	nir_ctx.nctx = &ctx;
 	ctx.nir = &nir_ctx;
 
 	nir_foreach_variable(variable, &geom_shader->outputs) {
-- 
2.16.1



More information about the mesa-dev mailing list