Commit 102e45e04f

LemonBoy <LemonBoy@users.noreply.github.com>
2020-12-31 11:48:31
stage1: Remove stray brace in rarely-tested code path
This should fix #7614 or part of it.
1 parent 707b81e
Changed files (1)
src
stage1
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();