aboutsummaryrefslogtreecommitdiff
path: root/lib/libunwind/src/Unwind-EHABI.cpp
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2021-09-13 15:59:24 -0700
committerAndrew Kelley <andrew@ziglang.org>2021-09-13 15:59:24 -0700
commit111a2dcf3ad53c0c8ad2c9e7c9bd042b81e90c82 (patch)
tree81e912f99cc6d4d8da95cfb8da89c25da14e5762 /lib/libunwind/src/Unwind-EHABI.cpp
parent303e1a062cdafa0fe06c4a78dabe0a077c239e04 (diff)
downloadzig-111a2dcf3ad53c0c8ad2c9e7c9bd042b81e90c82.tar.gz
zig-111a2dcf3ad53c0c8ad2c9e7c9bd042b81e90c82.zip
update libunwind to llvm release/13.x
upstream commit 2aa67b31faf087cd5a6df8aa4262b17bdc41bba7
Diffstat (limited to 'lib/libunwind/src/Unwind-EHABI.cpp')
-rw-r--r--lib/libunwind/src/Unwind-EHABI.cpp2
1 files changed, 2 insertions, 0 deletions
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;