@@ -475,8 +475,7 @@ class _LIBUNWIND_HIDDEN AbstractUnwindCursor {
475475#ifdef _LIBUNWIND_TRACE_RET_INJECT
476476 __attribute__ ((noinline, disable_tail_calls))
477477#endif
478- virtual void
479- jumpto () {
478+ virtual void jumpto () {
480479 _LIBUNWIND_ABORT (" jumpto not implemented" );
481480 }
482481 virtual bool isSignalFrame () {
@@ -980,8 +979,9 @@ class UnwindCursor : public AbstractUnwindCursor{
980979#ifdef _LIBUNWIND_TRACE_RET_INJECT
981980 __attribute__ ((noinline, disable_tail_calls))
982981#endif
983- virtual void
984- jumpto ();
982+ // clang-format off
983+ virtual void jumpto ();
984+ // clang-format on
985985 virtual bool isSignalFrame ();
986986 virtual bool getFunctionName (char *buf, size_t len, unw_word_t *off);
987987 virtual void setInfoBasedOnIPRegister (bool isReturnAddress = false );
@@ -1434,6 +1434,7 @@ void UnwindCursor<A, R>::setFloatReg(int regNum, unw_fpreg_t value) {
14341434
14351435template <typename A, typename R> void UnwindCursor<A, R>::jumpto() {
14361436#ifdef _LIBUNWIND_TRACE_RET_INJECT
1437+ // clang-format off
14371438 /*
14381439
14391440 The value of `_walkedFrames` is computed in `unwind_phase2` and represents the
@@ -1467,6 +1468,7 @@ template <typename A, typename R> void UnwindCursor<A, R>::jumpto() {
14671468 back to the landing pad, so we need to subtract 1 to the number of
14681469 `_EXTRA_LIBUNWIND_FRAMES_WALKED`.
14691470 */
1471+ // clang-format on
14701472
14711473 static constexpr size_t _EXTRA_LIBUNWIND_FRAMES_WALKED = 5 - 1 ;
14721474 _registers.returnto (_walkedFrames + _EXTRA_LIBUNWIND_FRAMES_WALKED);
0 commit comments