diff options
author | Alan Modra <amodra@gmail.com> | 2018-05-09 20:35:43 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2018-05-09 20:43:56 +0930 |
commit | 60cb2c8a331ed8e4ad20afc51f9cdb3d8d18a869 (patch) | |
tree | 5944db866874fb5af311dec5e7d334bf215f0570 /binutils | |
parent | 493ffac5aad8c39215702435c2506fd4d3077191 (diff) | |
download | gdb-60cb2c8a331ed8e4ad20afc51f9cdb3d8d18a869.zip gdb-60cb2c8a331ed8e4ad20afc51f9cdb3d8d18a869.tar.gz gdb-60cb2c8a331ed8e4ad20afc51f9cdb3d8d18a869.tar.bz2 |
Fix typo in od-macho.c
PR 22069
* od-macho.c (dump_unwind_encoding_x86): Fix typo in last patch.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/od-macho.c | 2 |
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) { |