mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-28 06:00:10 +01:00
ac/nir: remove backlink to nir_to_llvm_context
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
This commit is contained in:
parent
be5f6eb13e
commit
f4e85ba93f
1 changed files with 0 additions and 6 deletions
|
|
@ -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 {
|
||||
|
|
@ -6679,7 +6675,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;
|
||||
|
||||
|
|
@ -7178,7 +7173,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) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue