From 1678bb9ae7a076ec46d0804e15dabe3d2eb8bc4a Mon Sep 17 00:00:00 2001 From: Gheorghe-Teodor Bercea Date: Tue, 11 Nov 2025 09:36:48 -0500 Subject: [PATCH] Fix compilation when enabling indirect function calls (#1994) Fix compilation when enabling indirect function calls. --- src/device/op128.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/device/op128.h b/src/device/op128.h index 18c003d80b..f15981a102 100644 --- a/src/device/op128.h +++ b/src/device/op128.h @@ -154,7 +154,6 @@ union alignas(16) BytePack<16> { uint32_t u32[4]; uint64_t u64[2]; ulong2 ul2[1], native; -#if !defined(USE_INDIRECT_FUNCTION_CALL) || defined(__gfx942__) || defined(__gfx950__) inline __device__ BytePack<16>() = default; inline __device__ BytePack<16>(const BytePack<16>& other) { *this = other; @@ -164,7 +163,6 @@ union alignas(16) BytePack<16> { u64[1] = other.u64[1]; return *this; } -#endif }; template union BytePack {