diff options
| author | 2013-10-25 14:23:40 +0000 | |
|---|---|---|
| committer | 2013-10-25 14:23:42 +0000 | |
| commit | bbf88131e138634c5e24c4cf5c5ca753fa742850 (patch) | |
| tree | 0b9a64c5165bcfc0e64147d86fa04012f6990e16 /compiler/dex/quick/codegen_util.cc | |
| parent | 7f835b491b71a030f2a04e8e55a291bbab95eb1a (diff) | |
| parent | 4db179d1821a9e78819d5adc8057a72f49e2aed8 (diff) | |
Merge "Null check elimination improvement" into dalvik-dev
Diffstat (limited to 'compiler/dex/quick/codegen_util.cc')
| -rw-r--r-- | compiler/dex/quick/codegen_util.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/dex/quick/codegen_util.cc b/compiler/dex/quick/codegen_util.cc index 2ce8f581b4..cc185f54ee 100644 --- a/compiler/dex/quick/codegen_util.cc +++ b/compiler/dex/quick/codegen_util.cc @@ -164,7 +164,8 @@ void Mir2Lir::DumpLIRInsn(LIR* lir, unsigned char* base_addr) { lir->operands[0] = WrapPointer(ArenaStrdup("No instruction string")); } LOG(INFO) << "-------- dalvik offset: 0x" << std::hex - << lir->dalvik_offset << " @ " << reinterpret_cast<char*>(lir->operands[0]); + << lir->dalvik_offset << " @ " + << reinterpret_cast<char*>(UnwrapPointer(lir->operands[0])); break; case kPseudoExitBlock: LOG(INFO) << "-------- exit offset: 0x" << std::hex << dest; |