From bf48f7ca97a1d5b26d7420d5422753e26488f6ad Mon Sep 17 00:00:00 2001 From: M Henning Date: Sat, 19 Aug 2023 12:48:02 -0400 Subject: [PATCH] nv/codegen: Delete periodicMask32 Reviewed-by: Karol Herbst Part-of: --- src/nouveau/codegen/nv50_ir_util.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/nouveau/codegen/nv50_ir_util.h b/src/nouveau/codegen/nv50_ir_util.h index 8edd06edbe1..2ab11b9f365 100644 --- a/src/nouveau/codegen/nv50_ir_util.h +++ b/src/nouveau/codegen/nv50_ir_util.h @@ -553,13 +553,6 @@ public: void andNot(const BitSet&); - // bits = (bits | setMask) & ~clrMask - inline void periodicMask32(uint32_t setMask, uint32_t clrMask) - { - for (unsigned int i = 0; i < (size + 31) / 32; ++i) - data[i] = (data[i] | setMask) & ~clrMask; - } - unsigned int popCount() const; void print() const;