aboutsummaryrefslogtreecommitdiffstats
path: root/src/panfrost/bifrost
diff options
context:
space:
mode:
authorAlyssa Rosenzweig <[email protected]>2020-05-06 18:17:02 -0400
committerMarge Bot <[email protected]>2020-05-21 17:49:14 +0000
commit0737080ba611f6703a2cec5f4aa3389fc42338a4 (patch)
treefdf7974b2b39d6358d631ab96df06ce8eaecb092 /src/panfrost/bifrost
parent21405f6fcfc428af3f2aa9d1bc1c3b10b25a71fa (diff)
pan/lcra: Remove unused alignment parameters
Signed-off-by: Alyssa Rosenzweig <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5151>
Diffstat (limited to 'src/panfrost/bifrost')
-rw-r--r--src/panfrost/bifrost/bi_ra.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/panfrost/bifrost/bi_ra.c b/src/panfrost/bifrost/bi_ra.c
index 0124bf5ebc9..b305afdf574 100644
--- a/src/panfrost/bifrost/bi_ra.c
+++ b/src/panfrost/bifrost/bi_ra.c
@@ -67,7 +67,7 @@ bi_allocate_registers(bi_context *ctx, bool *success)
unsigned node_count = bi_max_temp(ctx);
struct lcra_state *l =
- lcra_alloc_equations(node_count, 1, 8, 16, 1);
+ lcra_alloc_equations(node_count, 16, 1);
l->class_start[BI_REG_CLASS_WORK] = 0;
l->class_size[BI_REG_CLASS_WORK] = 64 * 4; /* R0 - R63, all 32-bit */