stage1: Remove stray brace in rarely-tested code path

This should fix #7614 or part of it.
This commit is contained in:
LemonBoy 2020-12-31 11:48:31 +01:00 committed by Jakub Konka
parent 707b81ec37
commit 102e45e04f

View File

@ -48,7 +48,6 @@ static inline int ctzll(unsigned long long mask) {
#else
if (_BitScanForward(&result, mask & 0xffffffff))
return result;
}
if (_BitScanForward(&result, mask >> 32))
return 32 + result;
zig_unreachable();