v3dv: remove for_each_bit() macro

this was unused

Reviewed-by: Rob Clark <robclark@freedesktop.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9191>
This commit is contained in:
Mike Blumenkrantz 2021-02-22 10:13:16 -05:00 committed by Marge Bot
parent e7c7150d63
commit e89f158b82

View file

@ -112,10 +112,6 @@ pack_emit_reloc(void *cl, const void *reloc) {}
fprintf(stderr, __VA_ARGS__); \
} while (0)
#define for_each_bit(b, dword) \
for (uint32_t __dword = (dword); \
(b) = __builtin_ffs(__dword) - 1, __dword; __dword &= ~(1 << (b)))
struct v3dv_instance;
#ifdef USE_V3D_SIMULATOR