Use 'signed char' instead of 'char'

Hope this fixes the s390 and aarch64 bots.

llvm-svn: 244327
This commit is contained in:
Frederic Riss 2015-08-07 16:31:59 +00:00
parent b7e8c7c7c6
commit 8e30197427
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ struct MCDwarfLineTableParams {
unsigned char DWARF2LineOpcodeBase = 13;
/// Minimum line offset in a special line info. opcode. The value
/// -5 was chosen to give a reasonable range of values.
char DWARF2LineBase = -5;
signed char DWARF2LineBase = -5;
/// Range of line offsets in a special line info. opcode.
unsigned char DWARF2LineRange = 14;
};