[Lldb-commits] [PATCH] D60655: Fix typo in ArmUnwindInfo::GetUnwindPlan
Raphael Isemann via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Apr 16 01:08:20 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL358479: Fix typo in ArmUnwindInfo::GetUnwindPlan (authored by teemperor, committed by ).
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
Changed prior to commit:
https://reviews.llvm.org/D60655?vs=195029&id=195322#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D60655/new/
https://reviews.llvm.org/D60655
Files:
lldb/trunk/source/Symbol/ArmUnwindInfo.cpp
Index: lldb/trunk/source/Symbol/ArmUnwindInfo.cpp
===================================================================
--- lldb/trunk/source/Symbol/ArmUnwindInfo.cpp
+++ lldb/trunk/source/Symbol/ArmUnwindInfo.cpp
@@ -304,7 +304,7 @@
// 11001yyy
// Spare (yyy != 000, 001)
return false;
- } else if ((byte1 & 0xf8) == 0xc0) {
+ } else if ((byte1 & 0xf8) == 0xd0) {
// 11010nnn
// Pop VFP double-precision registers D[8]-D[8+nnn] saved (as if) by
// FSTMFDD (see remark d)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D60655.195322.patch
Type: text/x-patch
Size: 518 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20190416/f8b5c272/attachment.bin>
More information about the lldb-commits
mailing list