mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-29 14:20:29 +00:00
[MCDwarf] Use more idiomatic [u]int8_t types.
llvm-svn: 244347
This commit is contained in:
parent
c31bcce147
commit
f618de09d4
@ -187,12 +187,12 @@ struct MCDwarfLineTableParams {
|
||||
/// Note: If you want to change this, you'll have to update the
|
||||
/// "StandardOpcodeLengths" table that is emitted in
|
||||
/// \c Emit().
|
||||
unsigned char DWARF2LineOpcodeBase = 13;
|
||||
uint8_t DWARF2LineOpcodeBase = 13;
|
||||
/// Minimum line offset in a special line info. opcode. The value
|
||||
/// -5 was chosen to give a reasonable range of values.
|
||||
signed char DWARF2LineBase = -5;
|
||||
int8_t DWARF2LineBase = -5;
|
||||
/// Range of line offsets in a special line info. opcode.
|
||||
unsigned char DWARF2LineRange = 14;
|
||||
uint8_t DWARF2LineRange = 14;
|
||||
};
|
||||
|
||||
struct MCDwarfLineTableHeader {
|
||||
|
Loading…
Reference in New Issue
Block a user