From ab3a5bfeef5edb817863ad141142d8103ce4a9de Mon Sep 17 00:00:00 2001 From: Alex Xie Date: Fri, 26 Apr 2024 11:17:38 -0400 Subject: [PATCH] SWDEV-452538 - Cast functions directly to void * This fix build errors in some builds Change-Id: I1b8c9fa7186b60a20e8dfb86599c348455620c32 [ROCm/hip-tests commit: 26223a792b8276ca6433f416c55277305a267221] --- .../catch/unit/cooperativeGrps/hipCGGridGroupType_old.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/projects/hip-tests/catch/unit/cooperativeGrps/hipCGGridGroupType_old.cc b/projects/hip-tests/catch/unit/cooperativeGrps/hipCGGridGroupType_old.cc index 9f908a5be6..a1f6cdaa87 100644 --- a/projects/hip-tests/catch/unit/cooperativeGrps/hipCGGridGroupType_old.cc +++ b/projects/hip-tests/catch/unit/cooperativeGrps/hipCGGridGroupType_old.cc @@ -312,19 +312,19 @@ TEST_CASE("Unit_hipCGGridGroupType_Basic") { return; } - void* (*kernel_func)(void); + void* kernel_func; SECTION("Default grid group API test") { - kernel_func = reinterpret_cast(kernel_cg_grid_group_type); + kernel_func = reinterpret_cast(kernel_cg_grid_group_type); } #if HT_AMD SECTION("Base type grid group API test") { - kernel_func = reinterpret_cast(kernel_cg_grid_group_type_via_base_type); + kernel_func = reinterpret_cast(kernel_cg_grid_group_type_via_base_type); } #endif SECTION("Public API grid group test") { - kernel_func = reinterpret_cast(kernel_cg_grid_group_type_via_public_api); + kernel_func = reinterpret_cast(kernel_cg_grid_group_type_via_public_api); } // Test for block_size in powers of 2