| Index: src/a64/simulator-a64.cc
|
| diff --git a/src/a64/simulator-a64.cc b/src/a64/simulator-a64.cc
|
| index 34b5d7633f05b398069876d46be4fc0ed68dd0e5..d7de6c917bc40623430198f92f4ace88cdf07988 100644
|
| --- a/src/a64/simulator-a64.cc
|
| +++ b/src/a64/simulator-a64.cc
|
| @@ -945,14 +945,14 @@ void Simulator::PrintWrite(uint8_t* address,
|
| // Visitors---------------------------------------------------------------------
|
|
|
| void Simulator::VisitUnimplemented(Instruction* instr) {
|
| - printf("Unimplemented instruction at 0x%p: 0x%08" PRIx32 "\n",
|
| + printf("Unimplemented instruction at %p: 0x%08" PRIx32 "\n",
|
| reinterpret_cast<void*>(instr), instr->InstructionBits());
|
| UNIMPLEMENTED();
|
| }
|
|
|
|
|
| void Simulator::VisitUnallocated(Instruction* instr) {
|
| - printf("Unallocated instruction at 0x%p: 0x%08" PRIx32 "\n",
|
| + printf("Unallocated instruction at %p: 0x%08" PRIx32 "\n",
|
| reinterpret_cast<void*>(instr), instr->InstructionBits());
|
| UNIMPLEMENTED();
|
| }
|
|
|