commit 102e45e04feea00548134c2f31a62ad472f8bbd1 (tree)
parent 707b81ec3722e67979683b5adbc9edd507bdbf9d
Author: LemonBoy <LemonBoy@users.noreply.github.com>
Date: Thu, 31 Dec 2020 11:48:31 +0100
stage1: Remove stray brace in rarely-tested code path
This should fix #7614 or part of it.
Diffstat:
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/src/stage1/util.hpp b/src/stage1/util.hpp
@@ -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();