From 8e301974271ce6c1a562f83ceffc465a08819e9d Mon Sep 17 00:00:00 2001 From: Frederic Riss Date: Fri, 7 Aug 2015 16:31:59 +0000 Subject: [PATCH] Use 'signed char' instead of 'char' Hope this fixes the s390 and aarch64 bots. llvm-svn: 244327 --- llvm/include/llvm/MC/MCDwarf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/MC/MCDwarf.h b/llvm/include/llvm/MC/MCDwarf.h index 3e9d843..b9bf9d4 100644 --- a/llvm/include/llvm/MC/MCDwarf.h +++ b/llvm/include/llvm/MC/MCDwarf.h @@ -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; }; -- 2.7.4