[libcxx-commits] [PATCH] D107537: ARM32 unwinding on EHABI has issues with static analysis
Saleem Abdulrasool via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Aug 10 10:54:18 PDT 2021
This revision was automatically updated to reflect the committed changes.
Closed by commit rG08a5ac36b956: libunwind: add missing break statements in EHABI (authored by compnerd).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D107537/new/
https://reviews.llvm.org/D107537
Files:
libunwind/src/Unwind-EHABI.cpp
Index: libunwind/src/Unwind-EHABI.cpp
===================================================================
--- libunwind/src/Unwind-EHABI.cpp
+++ libunwind/src/Unwind-EHABI.cpp
@@ -97,9 +97,11 @@
case Descriptor::LU32:
descriptor = getNextWord(descriptor, &length);
descriptor = getNextWord(descriptor, &offset);
+ break;
case Descriptor::LU16:
descriptor = getNextNibble(descriptor, &length);
descriptor = getNextNibble(descriptor, &offset);
+ break;
default:
assert(false);
return _URC_FAILURE;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D107537.365544.patch
Type: text/x-patch
Size: 585 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20210810/06e3e4fb/attachment.bin>
More information about the libcxx-commits
mailing list