From e428f29a411d6d5c49daa8a627a2a27b6403e30c 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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244327 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/MC/MCDwarf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/MC/MCDwarf.h b/include/llvm/MC/MCDwarf.h index 3e9d84344b9..b9bf9d48b68 100644 --- a/include/llvm/MC/MCDwarf.h +++ b/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.34.1