aboutsummaryrefslogtreecommitdiffstats
path: root/src/freedreno/ir3/ir3_context.h
diff options
context:
space:
mode:
authorRob Clark <[email protected]>2019-02-19 13:32:25 -0500
committerRob Clark <[email protected]>2019-02-20 18:50:08 -0500
commit0df0fc28a5950e94008b8558a09226a45cc71d2a (patch)
treee149e2499405591b733b0d4bb8b2e9f5889ea4bd /src/freedreno/ir3/ir3_context.h
parent7fe9e790e72bacd4617e4ed288e6161b69235f7d (diff)
freedreno/ir3: rename put_dst()
This was overlooked when it moved to ir3_context.c and ceased to be static.. Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/freedreno/ir3/ir3_context.h')
-rw-r--r--src/freedreno/ir3/ir3_context.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/freedreno/ir3/ir3_context.h b/src/freedreno/ir3/ir3_context.h
index c79ea0ef422..81715f7fa11 100644
--- a/src/freedreno/ir3/ir3_context.h
+++ b/src/freedreno/ir3/ir3_context.h
@@ -154,7 +154,7 @@ unsigned ir3_pointer_size(struct ir3_context *ctx)
struct ir3_instruction ** ir3_get_dst_ssa(struct ir3_context *ctx, nir_ssa_def *dst, unsigned n);
struct ir3_instruction ** ir3_get_dst(struct ir3_context *ctx, nir_dest *dst, unsigned n);
struct ir3_instruction * const * ir3_get_src(struct ir3_context *ctx, nir_src *src);
-void put_dst(struct ir3_context *ctx, nir_dest *dst);
+void ir3_put_dst(struct ir3_context *ctx, nir_dest *dst);
struct ir3_instruction * ir3_create_collect(struct ir3_context *ctx,
struct ir3_instruction *const *arr, unsigned arrsz);
void ir3_split_dest(struct ir3_block *block, struct ir3_instruction **dst,