From 102e45e04feea00548134c2f31a62ad472f8bbd1 Mon Sep 17 00:00:00 2001 From: LemonBoy Date: Thu, 31 Dec 2020 11:48:31 +0100 Subject: stage1: Remove stray brace in rarely-tested code path This should fix #7614 or part of it. --- src/stage1/util.hpp | 1 - 1 file changed, 1 deletion(-) (limited to 'src') diff --git a/src/stage1/util.hpp b/src/stage1/util.hpp index 088249ae7a..bb4ff00f7a 100644 --- 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(); -- cgit v1.2.3