Make INSTRUCTION_SPECIFIER_FIELDS match X86DisassemblerCommon.h. Also remove trailing whitespace.

llvm-svn: 161029
This commit is contained in:
Craig Topper 2012-07-31 05:18:26 +00:00
parent 62ece8c8d5
commit 4f038a7a70

View File

@ -20,7 +20,7 @@
// 2. Read the opcode, and determine what kind of opcode it is. The
// disassembler distinguishes four kinds of opcodes, which are enumerated in
// OpcodeType (X86DisassemblerDecoderCommon.h): one-byte (0xnn), two-byte
// (0x0f 0xnn), three-byte-38 (0x0f 0x38 0xnn), or three-byte-3a
// (0x0f 0xnn), three-byte-38 (0x0f 0x38 0xnn), or three-byte-3a
// (0x0f 0x3a 0xnn). Mandatory prefixes are treated as part of the context.
//
// 3. Depending on the opcode type, look in one of four ClassDecision structures
@ -74,8 +74,7 @@
#ifndef X86DISASSEMBLER_H
#define X86DISASSEMBLER_H
#define INSTRUCTION_SPECIFIER_FIELDS \
const char* name;
#define INSTRUCTION_SPECIFIER_FIELDS
#define INSTRUCTION_IDS \
unsigned instructionIDs;
@ -88,7 +87,7 @@
#include "llvm/MC/MCDisassembler.h"
namespace llvm {
class MCInst;
class MCInstrInfo;
class MCSubtargetInfo;
@ -96,7 +95,7 @@ class MemoryObject;
class raw_ostream;
struct EDInstInfo;
namespace X86Disassembler {
/// X86GenericDisassembler - Generic disassembler for all X86 platforms.