Revert r152202 as it's causing internal buildbot failures.
[oota-llvm.git] / include / llvm / MC / MCInstrInfo.h
index 686d4386aa950189fffca825288ff1de3f0b6c95..1d3a36ca7c73afdd77f37d1278dd65168485a8b0 100644 (file)
@@ -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;