From 10c742afd5f04c2c3a3e1f881fd6a8c61d364c03 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sat, 21 Aug 2021 21:05:48 +0100 Subject: arm: fix bridge MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit which went a little wrong in commit dd91d3389c26645459d3b80649941d65efa4f63f Date: Sat Jan 2 14:36:44 2021 +0100 Fix some warnings for Raspberry pi 4 (part3) Change-Id: Ief7e1146b7480a1c16ec0810f991296710214332 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120830 Tested-by: Caolán McNamara Reviewed-by: Caolán McNamara --- bridges/source/cpp_uno/gcc3_linux_arm/uno2cpp.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'bridges') diff --git a/bridges/source/cpp_uno/gcc3_linux_arm/uno2cpp.cxx b/bridges/source/cpp_uno/gcc3_linux_arm/uno2cpp.cxx index 7a8adad90ead..a22ac393b5f7 100644 --- a/bridges/source/cpp_uno/gcc3_linux_arm/uno2cpp.cxx +++ b/bridges/source/cpp_uno/gcc3_linux_arm/uno2cpp.cxx @@ -298,9 +298,9 @@ void callVirtualMethod( #define INSERT_INT32( pSV, nr, pGPR, pDS ) \ if ( nr < arm::MAX_GPR_REGS ) \ - pGPR[nr++] = reinterpret_cast( pSV ); \ + pGPR[nr++] = *reinterpret_cast( pSV ); \ else \ - *pDS++ = reinterpret_cast( pSV ); + *pDS++ = *reinterpret_cast( pSV ); #ifdef __ARM_EABI__ #define INSERT_INT64( pSV, nr, pGPR, pDS, pStart ) \ @@ -310,8 +310,8 @@ void callVirtualMethod( } \ if ( nr < arm::MAX_GPR_REGS ) \ { \ - *reinterpret_cast(pGPR[nr++]) = *static_cast( pSV ); \ - *reinterpret_cast(pGPR[nr++]) = *(static_cast( pSV ) + 1); \ + pGPR[nr++] = *static_cast( pSV ); \ + pGPR[nr++] = *(static_cast( pSV ) + 1); \ } \ else \ { \ @@ -319,8 +319,8 @@ void callVirtualMethod( { \ ++pDS; \ } \ - *reinterpret_cast(*pDS++) = static_cast( pSV )[0]; \ - *reinterpret_cast(*pDS++) = static_cast( pSV )[1]; \ + *pDS++ = static_cast( pSV )[0]; \ + *pDS++ = static_cast( pSV )[1]; \ } #else #define INSERT_INT64( pSV, nr, pGPR, pDS, pStart ) \ -- cgit