| Index: src/ia32/disasm-ia32.cc
|
| diff --git a/src/ia32/disasm-ia32.cc b/src/ia32/disasm-ia32.cc
|
| index 274903ba455ee221dc1b5c63042fe76e429fe5de..3cd0ac6e52fbe9d20e85faf60311971b80b18488 100644
|
| --- a/src/ia32/disasm-ia32.cc
|
| +++ b/src/ia32/disasm-ia32.cc
|
| @@ -8,7 +8,6 @@
|
|
|
| #if V8_TARGET_ARCH_IA32
|
|
|
| -#include "src/base/compiler-specific.h"
|
| #include "src/disasm.h"
|
|
|
| namespace disasm {
|
| @@ -390,7 +389,8 @@
|
| int MemoryFPUInstruction(int escape_opcode, int regop, byte* modrm_start);
|
| int RegisterFPUInstruction(int escape_opcode, byte modrm_byte);
|
| int AVXInstruction(byte* data);
|
| - PRINTF_FORMAT(2, 3) void AppendToBuffer(const char* format, ...);
|
| + void AppendToBuffer(const char* format, ...);
|
| +
|
|
|
| void UnimplementedInstruction() {
|
| if (abort_on_unimplemented_) {
|
| @@ -1274,7 +1274,7 @@
|
| const InstructionDesc& idesc = instruction_table_->Get(*data);
|
| switch (idesc.type) {
|
| case ZERO_OPERANDS_INSTR:
|
| - AppendToBuffer("%s", idesc.mnem);
|
| + AppendToBuffer(idesc.mnem);
|
| data++;
|
| break;
|
|
|
|
|