pan/bi: Don't hide SCHED_ADD inside HI_LATENCY

It makes bitwise property checking annoying.

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4242>
diff --git a/src/panfrost/bifrost/compiler.h b/src/panfrost/bifrost/compiler.h
index 3c84c26..483a282 100644
--- a/src/panfrost/bifrost/compiler.h
+++ b/src/panfrost/bifrost/compiler.h
@@ -108,7 +108,7 @@
 
 /* For scheduling purposes this is a high latency instruction and must be at
  * the end of a clause. Implies ADD */
-#define BI_SCHED_HI_LATENCY ((1 << 7) | BI_SCHED_ADD)
+#define BI_SCHED_HI_LATENCY (1 << 7)
 
 /* Intrinsic is vectorized and should read 4 components regardless of writemask */
 #define BI_VECTOR (1 << 8)