[libunwind] c98d950 - [libunwind] Fix build warnings in Unwind-EHABI.cpp. NFC.
Martin Storsjö via cfe-commits
cfe-commits at lists.llvm.org
Mon Apr 25 13:01:58 PDT 2022
Author: Martin Storsjö
Date: 2022-04-25T23:00:52+03:00
New Revision: c98d9502fc6b10caea3cc3db94d85887c38e5892
URL: https://github.com/llvm/llvm-project/commit/c98d9502fc6b10caea3cc3db94d85887c38e5892
DIFF: https://github.com/llvm/llvm-project/commit/c98d9502fc6b10caea3cc3db94d85887c38e5892.diff
LOG: [libunwind] Fix build warnings in Unwind-EHABI.cpp. NFC.
Differential Revision: https://reviews.llvm.org/D124371
Added:
Modified:
libunwind/src/Unwind-EHABI.cpp
Removed:
################################################################################
diff --git a/libunwind/src/Unwind-EHABI.cpp b/libunwind/src/Unwind-EHABI.cpp
index 257db724c2679..6ac09adfb8fe3 100644
--- a/libunwind/src/Unwind-EHABI.cpp
+++ b/libunwind/src/Unwind-EHABI.cpp
@@ -436,6 +436,8 @@ _Unwind_VRS_Interpret(_Unwind_Context *context, const uint32_t *data,
_UVRSD_UINT32, &pac);
__asm__ __volatile__("autg %0, %1, %2" : : "r"(pac), "r"(lr), "r"(sp) :);
}
+#else
+ (void)hasReturnAddrAuthCode;
#endif
_Unwind_VRS_Set(context, _UVRSC_CORE, UNW_ARM_IP, _UVRSD_UINT32, &lr);
}
@@ -1193,6 +1195,7 @@ _Unwind_DeleteException(_Unwind_Exception *exception_object) {
extern "C" _LIBUNWIND_EXPORT _Unwind_Reason_Code
__gnu_unwind_frame(_Unwind_Exception *exception_object,
struct _Unwind_Context *context) {
+ (void)exception_object;
unw_cursor_t *cursor = (unw_cursor_t *)context;
switch (__unw_step(cursor)) {
case UNW_STEP_SUCCESS:
More information about the cfe-commits
mailing list