aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2018-05-09 20:35:43 +0930
committerAlan Modra <amodra@gmail.com>2018-05-09 20:43:56 +0930
commit60cb2c8a331ed8e4ad20afc51f9cdb3d8d18a869 (patch)
tree5944db866874fb5af311dec5e7d334bf215f0570
parent493ffac5aad8c39215702435c2506fd4d3077191 (diff)
downloadfsf-binutils-gdb-60cb2c8a331ed8e4ad20afc51f9cdb3d8d18a869.zip
fsf-binutils-gdb-60cb2c8a331ed8e4ad20afc51f9cdb3d8d18a869.tar.gz
fsf-binutils-gdb-60cb2c8a331ed8e4ad20afc51f9cdb3d8d18a869.tar.bz2
Fix typo in od-macho.c
PR 22069 * od-macho.c (dump_unwind_encoding_x86): Fix typo in last patch.
-rw-r--r--binutils/ChangeLog4
-rw-r--r--binutils/od-macho.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 4cc4cba..26601b9 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,7 @@
+2018-05-09 Alan Modra <amodra@gmail.com>
+
+ * od-macho.c (dump_unwind_encoding_x86): Fix typo in last patch.
+
2018-05-09 Sebastian Rasmussen <sebras@gmail.com>
* od-macho.c (dump_unwind_encoding_x86): Adjust for macro renaming.
diff --git a/binutils/od-macho.c b/binutils/od-macho.c
index b0c39b3..8153ada 100644
--- a/binutils/od-macho.c
+++ b/binutils/od-macho.c
@@ -1688,7 +1688,7 @@ dump_unwind_encoding_x86 (unsigned int encoding, unsigned int sz,
unsigned int regs;
char pfx = sz == 8 ? 'R' : 'E';
- regs = encoding & MACH_O_UNWIND_X86_64_RBP_FRAME_REGISTERS
+ regs = encoding & MACH_O_UNWIND_X86_64_RBP_FRAME_REGISTERS;
printf (" %cSP frame", pfx);
if (regs != 0)
{