c1d75c6e51
Via Coccinelle patch:
@@
expression count;
type T;
@@
-calloc(BITSET_WORDS(count), sizeof(T))
+BITSET_CALLOC(count)
@@
expression count;
type T;
@@
-calloc(sizeof(T), BITSET_WORDS(count))
+BITSET_CALLOC(count)
Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37779>