panfrost: hide more unused code in bi_lower_combine.c
authorTimothy Arceri <tarceri@itsqueeze.com>
Mon, 6 Jul 2020 03:50:06 +0000 (13:50 +1000)
committerMarge Bot <eric+marge@anholt.net>
Wed, 8 Jul 2020 03:04:03 +0000 (03:04 +0000)
Fixes some unused-function warnings.

Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5766>

src/panfrost/bifrost/bi_lower_combine.c

index 2d59b760c2869754bb1fb0df8fc199f0ae640cc1..db955552b11fc33f2c98e6bbf09bc2fe15bc9e49 100644 (file)
@@ -89,6 +89,7 @@ bi_combine_sel16(bi_context *ctx, bi_instruction *parent, unsigned comp, unsigne
  * If this pass is slow, this cost can be avoided in favour for better
  * bookkeeping. */
 
+#if 0
 static bi_instruction *
 bi_get_parent(bi_context *ctx, unsigned idx)
 {
@@ -99,6 +100,7 @@ bi_get_parent(bi_context *ctx, unsigned idx)
 
         return NULL;
 }
+#endif
 
 /* Rewrites uses of an index. Again, this could be O(n) to the program but is
  * currently O(nc) to the program and number of combines, so the pass becomes
@@ -124,6 +126,7 @@ bi_rewrite_uses(bi_context *ctx,
 
 /* Checks if we have a nicely aligned vector prefix */
 
+#if 0
 static bool
 bi_is_aligned_vec32(bi_instruction *combine, unsigned s, bi_instruction *io,
                 unsigned *count)
@@ -158,7 +161,6 @@ bi_is_aligned_vec32(bi_instruction *combine, unsigned s, bi_instruction *io,
         return true;
 }
 
-#if 0
 /* Tries to lower a given source of a combine to an appropriate rewrite,
  * returning true if successful, and false with no changes otherwise. */