From b55d427db10a635729203417f22cc0c92caeb52c Mon Sep 17 00:00:00 2001 From: Joshua Date: Wed, 26 Mar 2025 18:36:40 -0700 Subject: [PATCH] Fix apple & cgoto builds (oops) --- Common/include/Luau/Common.h | 9 +++++++++ VM/src/lvmexecute.cpp | 1 + 2 files changed, 10 insertions(+) diff --git a/Common/include/Luau/Common.h b/Common/include/Luau/Common.h index 799782bd..29fe5e58 100644 --- a/Common/include/Luau/Common.h +++ b/Common/include/Luau/Common.h @@ -1,5 +1,10 @@ // This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details #pragma once +#ifdef __clang__ +#if __has_warning("-Wassume") +#pragma clang diagnostic ignored "-Wassume" +#endif +#endif // Compiler codegen control macros #ifdef _MSC_VER @@ -19,8 +24,12 @@ #define LUAU_UNLIKELY(x) __builtin_expect(x, 0) #define LUAU_UNREACHABLE() __builtin_unreachable() #define LUAU_DEBUGBREAK() __builtin_trap() +#ifdef __APPLE__ +#define LUAU_ASSUME(x) (void)sizeof(!!(x)) +#elif #define LUAU_ASSUME(x) __attribute__((assume(x))); #endif +#endif // LUAU_FALLTHROUGH is a C++11-compatible alternative to [[fallthrough]] for use in the VM library #if defined(__clang__) && defined(__has_warning) diff --git a/VM/src/lvmexecute.cpp b/VM/src/lvmexecute.cpp index e6f7b026..e6b210a6 100644 --- a/VM/src/lvmexecute.cpp +++ b/VM/src/lvmexecute.cpp @@ -236,6 +236,7 @@ reentry: VM_START(); // starts the interpreter "loop" while (true) { + dispatch: // Note: this code doesn't always execute! on some platforms we use computed goto which bypasses all of this unless we run in single-step mode // Therefore only ever put assertions here. LUAU_ASSERT(base == L->base && L->base == L->ci->base);