X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=include%2Fllvm%2FMC%2FMCInstrInfo.h;h=1d3a36ca7c73afdd77f37d1278dd65168485a8b0;hb=f43e3fdb4ffddff6f71b5597c813c43e1e206564;hp=686d4386aa950189fffca825288ff1de3f0b6c95;hpb=d3c9d9447ed7b5b8d3800b871ff162ae2df9fd5b;p=oota-llvm.git diff --git a/include/llvm/MC/MCInstrInfo.h b/include/llvm/MC/MCInstrInfo.h index 686d4386aa9..1d3a36ca7c7 100644 --- a/include/llvm/MC/MCInstrInfo.h +++ b/include/llvm/MC/MCInstrInfo.h @@ -25,14 +25,14 @@ namespace llvm { /// class MCInstrInfo { const MCInstrDesc *Desc; // Raw array to allow static init'n - const uint16_t *InstrNameIndices; // Array for name indices in InstrNameData + const unsigned *InstrNameIndices; // Array for name indices in InstrNameData const char *InstrNameData; // Instruction name string pool unsigned NumOpcodes; // Number of entries in the desc array public: /// InitMCInstrInfo - Initialize MCInstrInfo, called by TableGen /// auto-generated routines. *DO NOT USE*. - void InitMCInstrInfo(const MCInstrDesc *D, const uint16_t *NI, const char *ND, + void InitMCInstrInfo(const MCInstrDesc *D, const unsigned *NI, const char *ND, unsigned NO) { Desc = D; InstrNameIndices = NI;