| Index: runtime/vm/disassembler_x64.cc
|
| ===================================================================
|
| --- runtime/vm/disassembler_x64.cc (revision 26375)
|
| +++ runtime/vm/disassembler_x64.cc (working copy)
|
| @@ -566,7 +566,7 @@
|
| value = 0; // Initialize variables on all paths to satisfy the compiler.
|
| count = 0;
|
| }
|
| - AppendToBuffer("%#"Px64"", value);
|
| + AppendToBuffer("%#" Px64 "", value);
|
| return count;
|
| }
|
|
|
| @@ -804,7 +804,7 @@
|
| void DisassemblerX64::AppendAddressToBuffer(uint8_t* addr_byte_ptr) {
|
| NoGCScope no_gc;
|
| uword addr = reinterpret_cast<uword>(addr_byte_ptr);
|
| - AppendToBuffer("%#"Px"", addr);
|
| + AppendToBuffer("%#" Px "", addr);
|
| // Try to print as heap object or stub name
|
| if (((addr & kSmiTagMask) == kHeapObjectTag) &&
|
| !Isolate::Current()->heap()->CodeContains(addr) &&
|
| @@ -1827,7 +1827,7 @@
|
| default:
|
| UNREACHABLE();
|
| }
|
| - AppendToBuffer("test%c rax,%#"Px64"",
|
| + AppendToBuffer("test%c rax,%#" Px64 "",
|
| operand_size_code(),
|
| value);
|
| break;
|
|
|