stage1: Remove stray brace in rarely-tested code path
This should fix #7614 or part of it.
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user