diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-04-01 20:17:30 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-04-01 20:31:50 +0300 |
commit | f470434b364ae223934cc4436cdc07eb03710c49 (patch) | |
tree | 894a51380bfe5602114c23dcd968234d65fb7087 /bridges | |
parent | 362d4f0cd4e50111edfae9d30c90602c37ed65a2 (diff) |
WaE: unused parameter 'nGPR' and 'nFPR'
Change-Id: If1de390588d9f73f1dd47a622e3b183062386043
Diffstat (limited to 'bridges')
-rw-r--r-- | bridges/source/cpp_uno/gcc3_ios_arm/uno2cpp-arm64.cxx | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/bridges/source/cpp_uno/gcc3_ios_arm/uno2cpp-arm64.cxx b/bridges/source/cpp_uno/gcc3_ios_arm/uno2cpp-arm64.cxx index 49e0191b26aa..788b98e2e2c6 100644 --- a/bridges/source/cpp_uno/gcc3_ios_arm/uno2cpp-arm64.cxx +++ b/bridges/source/cpp_uno/gcc3_ios_arm/uno2cpp-arm64.cxx @@ -125,9 +125,7 @@ void callVirtualMethod( sal_uInt64 *pStack, int nStack, sal_uInt64 *pGPR, - int nGPR, - double *pFPR, - int nFPR) + double *pFPR) { // never called if (! pThis) @@ -141,9 +139,6 @@ void callVirtualMethod( memcpy( stack, pStack, nStackBytes ); } - assert( nGPR <= arm::MAX_GPR_REGS ); - assert( nFPR <= arm::MAX_FPR_REGS ); - sal_uInt64 pMethod = *((sal_uInt64*)pThis); pMethod += 8 * nVtableIndex; pMethod = *((sal_uInt64 *)pMethod); @@ -348,6 +343,9 @@ static void cpp_call( } } + assert( nGPR <= arm::MAX_GPR_REGS ); + assert( nFPR <= arm::MAX_FPR_REGS ); + try { callVirtualMethod( @@ -355,8 +353,8 @@ static void cpp_call( pCppReturn, pReturnTypeRef, pStackStart, (pStack - pStackStart), - pGPR, nGPR, - pFPR, nFPR); + pGPR, + pFPR); // NO exception occurred... *ppUnoExc = 0; |