mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
Change unsigned to a uint16_t in static disassembler tables to reduce the table size.
llvm-svn: 163594
This commit is contained in:
parent
e65bf0a123
commit
c9fd7a1602
@ -78,7 +78,7 @@
|
||||
uint16_t operands;
|
||||
|
||||
#define INSTRUCTION_IDS \
|
||||
unsigned instructionIDs;
|
||||
uint16_t instructionIDs;
|
||||
|
||||
#include "X86DisassemblerDecoderCommon.h"
|
||||
|
||||
|
@ -24,7 +24,7 @@ extern "C" {
|
||||
uint16_t operands;
|
||||
|
||||
#define INSTRUCTION_IDS \
|
||||
unsigned instructionIDs;
|
||||
uint16_t instructionIDs;
|
||||
|
||||
#include "X86DisassemblerDecoderCommon.h"
|
||||
|
||||
|
@ -366,6 +366,10 @@ void DisassemblerTables::emitModRMDecision(raw_ostream &o1, raw_ostream &o2,
|
||||
break;
|
||||
}
|
||||
|
||||
// We assume that the index can fit into uint16_t.
|
||||
assert(sEntryNumber < 65536U &&
|
||||
"Index into ModRMDecision is too large for uint16_t!");
|
||||
|
||||
++sTableNumber;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user