|
|
@ -229,11 +229,13 @@ |
|
|
|
#ifdef PROTOBUF_TAILCALL |
|
|
|
#ifdef PROTOBUF_TAILCALL |
|
|
|
#error PROTOBUF_TAILCALL was previously defined |
|
|
|
#error PROTOBUF_TAILCALL was previously defined |
|
|
|
#endif |
|
|
|
#endif |
|
|
|
#if __has_cpp_attribute(clang::musttail) && \ |
|
|
|
#if __has_cpp_attribute(clang::musttail) && \ |
|
|
|
!defined(__arm__) && !defined(_ARCH_PPC) && !defined(__wasm__) |
|
|
|
!defined(__arm__) && !defined(_ARCH_PPC) && !defined(__wasm__) && \ |
|
|
|
|
|
|
|
!(defined(_MSC_VER) && defined(_M_IX86)) |
|
|
|
# ifndef PROTO2_OPENSOURCE |
|
|
|
# ifndef PROTO2_OPENSOURCE |
|
|
|
// Compilation fails on ARM32: b/195943306 |
|
|
|
// Compilation fails on ARM32: b/195943306 |
|
|
|
// Compilation fails on powerpc64le: b/187985113 |
|
|
|
// Compilation fails on powerpc64le: b/187985113 |
|
|
|
|
|
|
|
// Compilation fails on X86 Windows: https://github.com/llvm/llvm-project/issues/53271 |
|
|
|
# endif |
|
|
|
# endif |
|
|
|
#define PROTOBUF_MUSTTAIL [[clang::musttail]] |
|
|
|
#define PROTOBUF_MUSTTAIL [[clang::musttail]] |
|
|
|
#define PROTOBUF_TAILCALL true |
|
|
|
#define PROTOBUF_TAILCALL true |
|
|
|