diff options
| author | Frederic Riss <friss@apple.com> | 2015-08-07 19:19:44 +0000 |
|---|---|---|
| committer | Frederic Riss <friss@apple.com> | 2015-08-07 19:19:44 +0000 |
| commit | c1c1f534ecf0660da82ecd967970dabbfdb4e06a (patch) | |
| tree | 70b91b956b45c9037cd85c6e31f744f93abfb1d1 | |
| parent | e4f73b3f3b264b06f5159fe9d8e9259e82cf09a7 (diff) | |
| download | bcm5719-llvm-c1c1f534ecf0660da82ecd967970dabbfdb4e06a.tar.gz bcm5719-llvm-c1c1f534ecf0660da82ecd967970dabbfdb4e06a.zip | |
[MCDwarf] Use more idiomatic [u]int8_t types.
llvm-svn: 244347
| -rw-r--r-- | llvm/include/llvm/MC/MCDwarf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm/MC/MCDwarf.h b/llvm/include/llvm/MC/MCDwarf.h index b9bf9d48b68..028bdb2e3b1 100644 --- a/llvm/include/llvm/MC/MCDwarf.h +++ b/llvm/include/llvm/MC/MCDwarf.h @@ -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 { |

