diff options
author | Tor Lillqvist <tml@collabora.com> | 2013-12-22 02:18:03 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2013-12-22 02:19:46 +0200 |
commit | b0a9c3c71d39291f47d7154c42aee3c9b3ccea22 (patch) | |
tree | 5e2f79bfecad317e92453ed2d3e352930445a452 /bridges | |
parent | 4dba6f5837539746293ef6808ea39a764ab7654d (diff) |
Log a bit more information in codeSnippet()
Change-Id: Ifecfd55ed7f6a48f1cfea8182a40e8568dfc4780
Diffstat (limited to 'bridges')
-rw-r--r-- | bridges/source/cpp_uno/gcc3_ios_arm/cpp2uno-arm.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/bridges/source/cpp_uno/gcc3_ios_arm/cpp2uno-arm.cxx b/bridges/source/cpp_uno/gcc3_ios_arm/cpp2uno-arm.cxx index b873dac928f3..5de27f803fa6 100644 --- a/bridges/source/cpp_uno/gcc3_ios_arm/cpp2uno-arm.cxx +++ b/bridges/source/cpp_uno/gcc3_ios_arm/cpp2uno-arm.cxx @@ -484,10 +484,7 @@ namespace int index = functionIndex*nVtableOffsets*2 + vtableOffset*2 + bHasHiddenParam; unsigned char *result = ((unsigned char *) &codeSnippets) + codeSnippets[index]; - SAL_INFO( "bridges.ios", - "codeSnippet: [" << - functionIndex << "," << vtableOffset << "," << bHasHiddenParam << "]=" << - (void *) result); + SAL_INFO( "bridges.ios", "codeSnippet: [" << functionIndex << "," << vtableOffset << "," << (int)bHasHiddenParam << "]=" << (void *) result << " (" << std::hex << ((int*)result)[0] << "," << ((int*)result)[1] << "," << ((int*)result)[2] << "," << ((int*)result)[3] << ")"); return result; } |