Module Name: src
Committed By: joerg
Date: Fri Jan 15 15:37:05 UTC 2016
Modified Files:
src/external/gpl3/gdb/dist/opcodes: arm-dis.c
Log Message:
Expand undefined number.
To generate a diff of this commit:
cvs rdiff -u -r1.1.1.4 -r1.2 src/external/gpl3/gdb/dist/opcodes/arm-dis.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/gpl3/gdb/dist/opcodes/arm-dis.c
diff -u src/external/gpl3/gdb/dist/opcodes/arm-dis.c:1.1.1.4 src/external/gpl3/gdb/dist/opcodes/arm-dis.c:1.2
--- src/external/gpl3/gdb/dist/opcodes/arm-dis.c:1.1.1.4 Sat Aug 15 09:47:30 2015
+++ src/external/gpl3/gdb/dist/opcodes/arm-dis.c Fri Jan 15 15:37:05 2016
@@ -2105,7 +2105,7 @@ print_insn_coprocessor (bfd_vma pc,
/* Is ``imm'' a negative number? */
if (imm & 0x40)
- imm |= (-1 << 7);
+ imm |= -128;
func (stream, "%d", imm);
}