From 111a2dcf3ad53c0c8ad2c9e7c9bd042b81e90c82 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 13 Sep 2021 15:59:24 -0700 Subject: [PATCH] update libunwind to llvm release/13.x upstream commit 2aa67b31faf087cd5a6df8aa4262b17bdc41bba7 --- lib/libunwind/src/Unwind-EHABI.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/libunwind/src/Unwind-EHABI.cpp b/lib/libunwind/src/Unwind-EHABI.cpp index 32b5cbc3be..8843db7f54 100644 --- a/lib/libunwind/src/Unwind-EHABI.cpp +++ b/lib/libunwind/src/Unwind-EHABI.cpp @@ -97,9 +97,11 @@ _Unwind_Reason_Code ProcessDescriptors( 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;