Skip to content

Commit

Permalink
Fix compilation of libunwind on ARM (#1385)
Browse files Browse the repository at this point in the history
  • Loading branch information
kant2002 authored Aug 5, 2021
1 parent 6c0ed45 commit 9a766d3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/coreclr/nativeaot/libunwind/src/Unwind-EHABI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,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;
Expand Down

0 comments on commit 9a766d3

Please sign in to comment.