From 67d94d29c154a376d12e582421323c1d250da20c Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Tue, 9 Oct 2018 18:48:37 +0100 Subject: COMPMID-1451: Fix compilation issues under gcc 8 Change-Id: I05d3447336ee0bf330e2a0c58fc6904be1db8f83 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/152626 Tested-by: bsgcomp Reviewed-by: Pablo Tello --- src/core/NEON/kernels/arm_gemm/merges/a64_merge_int32_12x8.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/NEON/kernels/arm_gemm') diff --git a/src/core/NEON/kernels/arm_gemm/merges/a64_merge_int32_12x8.hpp b/src/core/NEON/kernels/arm_gemm/merges/a64_merge_int32_12x8.hpp index ee32ce7630..35d4cc5d73 100644 --- a/src/core/NEON/kernels/arm_gemm/merges/a64_merge_int32_12x8.hpp +++ b/src/core/NEON/kernels/arm_gemm/merges/a64_merge_int32_12x8.hpp @@ -273,7 +273,7 @@ inline void MergeResults<12, 8, false>(int32_t *out, const int32_t *in, const in template<> inline void MergeResults<12, 8>(uint32_t *out, const uint32_t *in, const int ldout, const int y0, const int ymax, const int x0, const int xmax, const uint32_t alpha, const uint32_t beta) { // Since the above code uses only MUL and MLA instructions discard the "unsignedness" and proceed safely. - MergeResults<12, 8>(reinterpret_cast(out), reinterpret_cast(in), ldout, y0, ymax, x0, xmax, static_cast(alpha), static_cast(beta)); + MergeResults<12, 8>(reinterpret_cast(out), reinterpret_cast(in), ldout, y0, ymax, x0, xmax, static_cast(alpha), static_cast(beta)); } #endif // __aarch64__ -- cgit v1.2.1